=Now()

  • Thread starter Thread starter Guest
  • Start date Start date
Format(Now(), "yyyy") will return a string version of the current year,
DatePart("yyyy", Now()) or Year(Now()) will return a numeric version.
 
Back
Top