CDateToIso Function [Runtime]/text/sbasic/shared/03030107.xhpCdateToIso functionCDateToIso 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:StringParameters:Number: Integer that contains the serial date number.Example:Sub ExampleCDateToIsoMsgBox "" & CDateToIso(Now) ,64,"ISO Date"End Sub