Hi All,
I have a date-time field in the format MM-DD-YYYY hh:mm:ss. I need to add 10 hours to this field. currently the time is in UTC , I need to convert it to local system time. How can I implement this?
pls help.
=Date(YourFieldName + (10/24), 'DD/MM/YYYY hh:mm:ss')
You may have to use
=Date(Date#(YourFieldName, 'DD/MM/YYYY hh:mm:ss') + (10/24), 'DD/MM/YYYY hh:mm:ss')
or, if it's a variable
=Date(Date#('$(YourFieldName)', 'DD/MM/YYYY hh:mm:ss') + (10/24), 'DD/MM/YYYY hh:mm:ss')
thanks .. will implement this.
Great. Please mark the solution as correct if it works for you.
Hi Jayati
I suggest you use the ConvertToLocalTime(timestamp [, place [, ignore_dst=false]]) function: