Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I want convert timestamp GMT timezone to EST timezone timestamp , timestamp format 5/8/2023 12:32:08PM GMT
You need to first strip the 'GMT' away, e.g.
Left(TimestampVariable,Index(TimestampVariable,' ',2)-1)
Then interpret it using Timestamp#():
Timestamp#(<TheAboveExpression>,'D/M/YYYY hh:mm:ssTT')
Then you can use ConvertToLocalTime().
I am not getting answer , i stored timestamp in variable when i use that variable in converttolocatime function getting error like variable not exists
You need to first strip the 'GMT' away, e.g.
Left(TimestampVariable,Index(TimestampVariable,' ',2)-1)
Then interpret it using Timestamp#():
Timestamp#(<TheAboveExpression>,'D/M/YYYY hh:mm:ssTT')
Then you can use ConvertToLocalTime().