May 22, 2002 #1 Delz IS-IT--Management May 13, 2002 5 GB i need to change a time format from 235826.09 secs into time past 00.00.00 (12 o'clock +) hh/mm/ss/ I can't find a function to do this i want to say this is 23:58:26:00 Please help i've almost there
i need to change a time format from 235826.09 secs into time past 00.00.00 (12 o'clock +) hh/mm/ss/ I can't find a function to do this i want to say this is 23:58:26:00 Please help i've almost there
May 23, 2002 #2 blom0344 Technical User Mar 20, 2002 3,441 NL Hello Delz, Supposing your time format is a string, you would need an expression like this: =SubStr(<variable>,1,2)&" : "&SubStr(<variable>,3,2)&" : "&SubStr(<variable>,5,2)&" : "&"00". If it is not a string, then first convert it to a string using FormatNumber() blom0344 Upvote 0 Downvote
Hello Delz, Supposing your time format is a string, you would need an expression like this: =SubStr(<variable>,1,2)&" : "&SubStr(<variable>,3,2)&" : "&SubStr(<variable>,5,2)&" : "&"00". If it is not a string, then first convert it to a string using FormatNumber() blom0344