CDateToIso Function [Runtime] /text/sbasic/shared/03030107.xhp Sun Microsystems, Inc. converted from old format - fpe
CdateToIso function CDateToIso Function [Runtime] Returns the date in ISO format from a serial date number that is generated by the DateSerial or the DateValue function.
Syntax: CDateToIso(Number) Return value: String Parameters: Number: Integer that contains the serial date number. Example: Sub ExampleCDateToIso MsgBox "" & CDateToIso(Now) ,64,"ISO Date" End Sub