Checks that the title master exists and, if it does, formats the date and time to be visible and to use the dMMMyy format with automatic updating: : Slide Master « PowerPoint « VBA / Excel / Access / Word
Checks that the title master exists and, if it does, formats the date and time to be visible and to use the dMMMyy format with automatic updating:
Sub master()
With ActivePresentation If .HasTitleMaster Then
With .TitleMaster.HeadersFooters.DateAndTime
.Visible = msoTrue
.Format = ppDateTimedMMMyy
.UseFormat = msoTrue End With End If End With End Sub