![]() |
|
#2
|
|||
|
|||
|
You can do lots of things with VBA. For example, hide a slide on Mondays:
Code:
Sub MyRules()
If DatePart("w", Date) = vbMonday Then
ActivePresentation.Slides(3).SlideShowTransition.Hidden = msoTrue
Else
ActivePresentation.Slides(3).SlideShowTransition.Hidden = msoFalse
End If
End Sub
|
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Can I select different pictures on different slides at the same time or | Frogggg | PowerPoint | 0 | 08-29-2010 08:43 PM |
| Updating Scheduled Events | mimsay | Outlook | 0 | 09-08-2009 09:40 AM |
advancing slides
|
sy84n | PowerPoint | 5 | 05-10-2009 11:13 AM |
viewing slides while doing my presentation
|
davepower | PowerPoint | 1 | 04-30-2009 02:18 PM |
| How many slides in a 30 min presentation | barbara3010 | PowerPoint | 2 | 02-12-2009 10:12 AM |