View Single Post
 
Old 10-08-2010, 09:05 AM
Kimberly Kimberly is offline Windows 7 Office 2010 (Version 14.0)
Expert
 
Join Date: May 2010
Posts: 517
Kimberly is on a distinguished road
Default

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
Reply With Quote