People frequently need to bold attachment in powerpoint when working with forms. Unfortunately, few programs provide the options you need to accomplish this task. To do something like this typically involves switching between several software applications, which take time and effort. Fortunately, there is a solution that works for almost any job: DocHub.
DocHub is a perfectly-built PDF editor with a full set of valuable capabilities in one place. Modifying, approving, and sharing paperwork gets easy with our online tool, which you can use from any online device.
By following these five basic steps, you'll have your revised powerpoint quickly. The intuitive interface makes the process fast and effective - stopping switching between windows. Start using DocHub now!
a subscriber asked me how to bold all the slide numbers in a powerpoint presentation hereamp;#39;s 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 weamp;#39;ll 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