You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It would be nice to provide links to documentation and examples for how to work with Date datatypes, including in conjunction with the Format() function.
' documentation examples:DimMyTime,MyDate,MyStrMyTime=#17:04:23#MyDate=#January27,1993#' Returns current system time in the system-defined long time format.MyStr=Format(Time,"Long Time")' Returns current system date in the system-defined long date format.MyStr=Format(Date,"Long Date")MyStr=Format(MyTime,"h:m:s")' Returns "17:4:23".MyStr=Format(MyTime,"hh:mm:ss am/pm")' Returns "05:04:23 pm".MyStr=Format(MyTime,"hh:mm:ss AM/PM")' Returns "05:04:23 PM".MyStr=Format(MyDate,"dddd, mmm d yyyy")' Returns "Wednesday, Jan 27 1993".' If format is not supplied, a string is returned.MyStr=Format(23)' Returns "23".
The text was updated successfully, but these errors were encountered:
It would be nice to provide links to documentation and examples for how to work with
Date
datatypes, including in conjunction with theFormat()
function.See:
The text was updated successfully, but these errors were encountered: