Long Format for Date?

  • Thread starter Thread starter Dave Elliott
  • Start date Start date
D

Dave Elliott

How can I make this show the long format instead of short?

="Today's Date is" & " " & Date()
 
Note that you could put that space in the first string...

="Today's Date is " & Format(Date(),"long date")
 
Back
Top