Powerpoint and VBA - "Modular" presentation -



Powerpoint and VBA - "Modular" presentation -

let me explain context: have huge training material (some 750 slides, two-days training) rework. though considered "in-depth training", not material useful given two-days session. depending on trainees profile, chapter can either presented practical advices, or overview given. means, before every session, review material , manually select slides presented/hidden according trainees profile.

as i've never used vba macros on powerpoint, wondering if possible to, say, "tag" slides 1 or several roles (e.g. slide "system designer", slide "certification specialist", slide "system designer + certification manager", etc...), , simple form, check "tags" want , automatically generate related presentation tagged slides accordingly.

for example, if given training session have no scheme designer, have certification specialists , managers, check "certification specialist" , "certification manager" , generate me presentation slides have tags.

i hope clear enough...

many in advance !

morgan

yes, possible. using vba, tag slides (there things called tags in object model), have routine create slides tagged way visible , others invisible.

to add together tag selected slide, you'd identify of selected slides beingness material certification specialists. slides can have multiple tags, can mod same code create tag them other types of audience well.

sub tagascertificationspecialist() dim x long x = 1 activewindow.selection.sliderange.count activewindow.selection.sliderange(x).tags.add "certificationspecialist", "yes" next end sub

vba powerpoint

Comments

Popular posts from this blog

assembly - What is the addressing mode for ld, add, and rjmp instructions? -

vowpalwabbit - Interpreting Vowpal Wabbit results: Why are some lines appended by "h"? -

Is there a way to convert an HTML page styled with Bootstrap CSS into email-compatible html? -