Dealing With Timezones in SSRS Reports

Introduction

The Coordinated Universal Time (UTC) is the primary time standard commonly used across the world. The data warehouses store all date properties in UTC format. These UTC dates are localized in the date and time based on the user's time zone. The primary advantage of storing dates and times in UTC format is that it makes data transportable. In other words, date and time stored in UTC format can be easily converted to local date and time by adding an offset.

Problem statement

UTC dates are very important for the organization that span timezones. Normally the DBA chooses UTC date to store dates because it can be easily converted to a local date and time by adding an offset. This is very easily done with C# code. Using the following code we can get the local date in C#.

  1. DateTime d = DateTime.UtcNow;  
  2. var tz = "India Standard Time";  
  3. var currentdate = System.TimeZoneInfo.ConvertTimeBySystemTimeZoneId(d, TimeZoneInfo.Utc.Id, tz);  
  4.   
  5. Console.WriteLine("UTC Date :" + d);  
  6. Console.WriteLine("Local Date :" + currentdate);  

Output



The following describeds how to convert a UTC date to a local date based on the time zone in a SSRS report.

Solution: Microsoft provides a way to use an assembly with a report. By default the "System" namespace is included as the report assembly reference so we can use the preceding C# code in the “Code” section of the report property and create a custom function that returns a local date. The following is the procedure to do that.

Step 1

Click on Report >> Report Properties from the menu.



Step 2

Add the following function in the Code tab.

  1. public Shared Function FromUTC(ByVal d As Date, ByVal tz As String) As Date  
  2. Return (System.TimeZoneInfo.ConvertTimeBySystemTimeZoneId(d, TimeZoneInfo.Utc.id, tz))  
  3. End function  



Step 3

To convert a date from UTC right-click the TextBox and select "Expression". Use the function that is written in the Code tab of the report properties and pass the UTC date value and timezone name to get the localized date value.

  1. =Code.FromUTC("2015-04-07 06:51:00""AUS Central Standard Time")  


Output



The same thing can be done directly within an expression (without creating any VB code in the Code section), as shown in the following figure. Right-click on the TextBox and select "Expression". Paste in the following code. (This example contains a hard-coded date and timezone name; these can be replaced with a parameter or field).
  1. =System.TimeZoneInfo.ConvertTimeBySystemTimeZoneId("2015-04-07 06:51:00", TimeZoneInfo.Utc.id, "AUS Central Standard Time")  




Output



You may get a list of supported timezones from here,

Summary

Using the method described in the preceding section, we can convert a UTC date to a local date based on the timezone. I hope this helps!

Up Next
    Ebook Download
    View all
    Learn
    View all