Hello,
We store our date/time information in UTC format on our SQL Server.
When using SQL Reporting Services, we'd like to display this data in the time zone of the client workstation, but it appears that using an expression like;
System.TimeZone.CurrentTimeZone.ToLocalTime(Fields!DateStarted.Value)
... converts into the time zone of the server, not of the client workstation?
Is there any way of performing this conversion locally, or passing the local time zone to the server for conversion?
Thanks in advance Matt