![]() |
|
#1
|
|||
|
|||
|
Hello,
In my powerpoint presentation, I would like to have a drop down list with 5 different regions - North America, Europe, China, Japan and Rest of World. When someone chooses say North America, I would then like it to take them to the North America slide. I know I need to use the Combo Box from the Developer tab and then Visual Basic to write the code, but I just don't know what that code would be. Could someone help? |
|
#2
|
|||
|
|||
|
Basic code would be something like
Private Sub ComboBox1_Change() Select Case Me.ComboBox1.ListIndex Case Is = 0 'first choice SlideShowWindows(1).View.GotoSlide 2 Case Is = 1 'next SlideShowWindows(1).View.GotoSlide 5 End Select End Sub |
|
| Tags |
| combobox, drop down, vba |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
How to import list from Excel into drop-down list into word
|
ahw | Word VBA | 43 | 02-28-2020 08:11 PM |
| Add new slides using a Bullet list | Jstacey | PowerPoint | 0 | 05-13-2014 12:48 AM |
| ppt slides with adjustable graphs based on drop down | psrs0810 | PowerPoint | 0 | 01-30-2013 07:10 AM |
| Returning a specific value when item is selected from a drop-down list | J Press | Excel | 4 | 09-10-2012 06:12 AM |
| Drop down list, Can it be done??? | garethreid | Outlook | 0 | 08-09-2012 06:08 AM |