
Contributor III
2018-12-12
11:57 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
adding hours to time
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.
5,498 Views
4 Replies


Partner Ambassador
2018-12-13
12:15 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
=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')
5,493 Views

Contributor III
2018-12-13
12:26 AM
Author
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
thanks .. will implement this.
5,485 Views


Partner Ambassador
2018-12-13
12:27 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Great. Please mark the solution as correct if it works for you.
5,482 Views


Specialist II
2018-12-13
02:19 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi Jayati
I suggest you use the ConvertToLocalTime(timestamp [, place [, ignore_dst=false]]) function:
