Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Sub Date_Time_System()
MsgBox Now
MsgBox Format(Now, "Short Date") ' eg. 9/11/2003
MsgBox Format(Now, "Long Date") ' eg. September 11, 2003
MsgBox Format(Now, "Short Time") ' 24 Hour Clock (14:30)
MsgBox Format(Now, "Long Time") ' AM/PM Clock (2:30 PM) or 24 hr. w/ sec.
End Sub
End Sub