dynamic caption

  • Thread starter Thread starter shank
  • Start date Start date
S

shank

Is it possible to dynamically fill-in the caption on a report?

What I want is "MyReport" & DatePart("yyyy",Now())

thanks
 
Yes,

Private Sub Report_Open(Cancel as Integer)

me.Caption = "MyReport" & Datepart("yyyy", Now())

End Sub
 
Back
Top