Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi all,
I have small issue..
i have timestamp like 10/10/2015 11:00:00 PM
i want to add Hour into it like suppose 17 hour in to it
how i can achieve it?
If it's a field containing a numeric number of hours:
timestamp(Date + NumberOfHours/24)
Or if you're adding a specific number of hours:
timestamp(Date + 50/24)
Try: timestamp(YourTimestamp + (1/24*17), 'YourFormat')
- Marcus
If it's a field containing a numeric number of hours:
timestamp(Date + NumberOfHours/24)
Or if you're adding a specific number of hours:
timestamp(Date + 50/24)