When you edit documents in various formats every day, the universality of your document tools matters a lot. If your tools work for only a few of the popular formats, you may find yourself switching between software windows to bold id in powerpoint and handle other file formats. If you want to remove the headache of document editing, go for a solution that will effortlessly handle any extension.
With DocHub, you do not need to focus on anything but actual document editing. You won’t have to juggle programs to work with various formats. It will help you edit your powerpoint as effortlessly as any other extension. Create powerpoint documents, edit, and share them in one online editing solution that saves you time and boosts your productivity. All you have to do is register a free account at DocHub, which takes only a few minutes.
You won’t have to become an editing multitasker with DocHub. Its feature set is enough for fast document editing, regardless of the format you want to revise. Start by creating a free account and see how straightforward document management may be with a tool designed specifically for your needs.
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