Forum Discussion
h4tt3n
6 years agoHelper V
Need help converting Date/Time timestamp to different timezone
Hello all, I have a "TimeStamp" column of datatype Time/Date that I want to offset by 2 hours from UTC to my local time zone. It needs to be Time/Date because I use it for incremental refresh, wh...
- 6 years ago
Not familiar with that function but it does to be different than I expected. Simple fix is just to add 2 hours to your datetime columns as follows
=[DateTimeColumn] + #duration(0,2,0,0)
If this works for you, please mark it as solution. Kudos are appreciated too. Please let me know if not.
Regards,
Pat
mahoneypat
6 years agoMicrosoft Employee
Not familiar with that function but it does to be different than I expected. Simple fix is just to add 2 hours to your datetime columns as follows
=[DateTimeColumn] + #duration(0,2,0,0)
If this works for you, please mark it as solution. Kudos are appreciated too. Please let me know if not.
Regards,
Pat
- h4tt3n6 years agoHelper V
This worked, thank you.