A family of Microsoft suites of integrated development tools for building applications for Windows, the web, mobile devices and many other platforms. Miscellaneous topics that do not fit into specific categories.
Hello @Rookie ,
To display your UTC dates in Pacific Standard Time, you can use the System.TimeZoneInfo.ConvertTimeBySystemTimeZoneId method directly in your expression.
This approach also automatically handles Daylight Saving Time adjustments for you, so you do not need to manually calculate offsets.
You can use the following expression in your report field (remember to replace UtcEventTime with your actual field):
=System.TimeZoneInfo.ConvertTimeBySystemTimeZoneId(Fields!UtcEventTime.Value, "UTC", "Pacific Standard Time")
I hope this helps.