Unusual file formats within your everyday document management and modifying operations can create instant confusion over how to modify them. You may need more than pre-installed computer software for effective and fast file modifying. If you want to bold number in powerpoint or make any other simple change in your file, choose a document editor that has the features for you to deal with ease. To handle all the formats, including powerpoint, opting for an editor that works well with all kinds of files will be your best option.
Try DocHub for efficient file management, regardless of your document’s format. It has potent online editing instruments that streamline your document management operations. It is easy to create, edit, annotate, and share any file, as all you need to access these features is an internet connection and an active DocHub account. Just one document solution is all you need. Do not waste time switching between different programs for different files.
Enjoy the efficiency of working with a tool made specifically to streamline document processing. See how effortless it is to modify any file, even if it is the very first time you have dealt with its format. Sign up a free account now and improve your whole working process.
a subscriber asked me how to bold all the slide numbers in a powerpoint presentation heres how i would do that to simulate a presentation in which it would make more sense to do this with code rather than manual i set up like this start a new presentation change the slide to blank layout turn on page numbers in the footer add 99 slides with vba that concludes the setup so we have a realistic example it would be very tedious to bold all the slide numbers manually the vba code is going to do the same thing for every slide on each slide we have to find the slide number and then bold it sub bold slide numbers dim slide as slide well iterate over each slide with this variable dim num shape as shape the slide number is a shape this will be once we find it for each slide in activepresentation.slides set numshape equals find slide num slide this function will look at all the shapes on the slide and return the one that is the slide number function find slide num param slide as slide as shape