Skip to main content
All CollectionsRegistrationSearch and reports
How to display report date/time in different time zones
How to display report date/time in different time zones

Learn how to display report date/times in different time zones.

Ben Dharmanandan avatar
Written by Ben Dharmanandan
Updated over a week ago

When running reports in Eventsforce to show date and time (ex: payment date/time, registration date/time), Eventsforce always displays this information in UTC (Coordinated Universal Time) time zone. UTC is also used in all backend areas of Eventsforce.

Clients who are running events in other time zones may want to display their date/time in the local time zone. This can be done by manually editing the exported report from Eventsforce and adding a new column with an excel formula.

Note: This article uses to Microsoft Excel as the program in which the report is exported and modified.

Add a custom time zone column to an excel report

In order to display a custom time zone, event managers must make the updates within the Microsoft Excel platform by taking the steps below:

  1. First export your report to an Excel/CSV file (ensure you have a column to show date/time)

  2. Right click on the column after the "Date/time" column and select "Insert" to add a new row

  3. Give your row a name (ex: Payment Date/time (PST))

  4. Add the following formula into the first row of the column, where "I2" is the original date/time cell, and "8/24" references the hours out of 24 you need to remove from the UTC time zone (ex: PST = UTC - 8 hours):
    โ€‹

    =SUM(I2-(8/24))
    โ€‹

    Example:

  5. Click "Enter" after adding the formula and the data should automatically display. If the date/time does not display automatically, you may need to "Format cells" and choose the 'Date' display option that includes date/time.

  6. Use the small square icon in the bottom right of the cell and drag this formula to all rows below to populate data for the entire report

  7. Save the report

Tips

Formulas for various time zones (be sure to update "I2" to reflect the cell of the date/time in UTC), be sure to take into account 'daylight savings time':

Time Zone

Excel Formula

Eastern Standard Time

=SUM(I2-(5/24))

Central Standard Time

=SUM(I2-(6/24))

Mountain Time

=SUM(I2-(7/24))

Pacific Standard Time

=SUM(I2-(8/24))

Beiging, Hong Kong

=SUM(I2+(8/24))

Note: The "I2" value should be replaced with the letter for the column the UTC date/time appears in, as well as the cell number the date/time value appears in.

Other articles you may find useful:

Did this answer your question?