Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
zachjudge
Regular Visitor

UTC timezone issue

Hi,


I don't know if this is related to all the other timezone issues people have (none of the solutions I've found seem to work) because I don't think I can solve by having a local timezone slicer because of my same day last year DAX columns.

 

My timezone is +12 (NZ) and I have a previous day sales report that I had working by using filters on but my boss wanted to see same day LY which don't work (as far as I'm aware) with the filters.

 

Here's my issue, today is Tuesday and the report will show Sundays sales up until 12pm today and then will switch to Monday:

zachjudge_0-1623097252496.png

(Not all stores have been on the database for a full year)

 

It should look like this being that it is Tuesday today (screenshot is from desktop application):

zachjudge_1-1623097451607.png

 

This is because of the UTC server timezone.

 

This is the DAX query I have for yesterday sales:

 

Yesterday Sales = 
CALCULATE(
    SUM(fact_sales[sale_amt])
    , 'dim_date'[date_value] = TODAY()-1
    )

 

 

I have tried to run with today sales and just update the dataset at night but come 12pm, everything apart from same day ly goes (Blank) because it would roll onto the UTC today.

 

Thanks in advance to anyone that can help!

1 ACCEPTED SOLUTION
v-kelly-msft
Community Support
Community Support

Hi @zachjudge ,

You can use DateTime.AddZone function to achieve your requirement. This function adds the timezonehours as an offset to the input datetime value and returns a new datetimezone value.

DateTime.AddZone([Date],-12)

 

Reference
https://msdn.microsoft.com/en-us/library/mt253514.aspx

 

Best Regards,
Kelly

Did I answer your question? Mark my post as a solution!

View solution in original post

3 REPLIES 3
v-kelly-msft
Community Support
Community Support

Hi @zachjudge ,

You can use DateTime.AddZone function to achieve your requirement. This function adds the timezonehours as an offset to the input datetime value and returns a new datetimezone value.

DateTime.AddZone([Date],-12)

 

Reference
https://msdn.microsoft.com/en-us/library/mt253514.aspx

 

Best Regards,
Kelly

Did I answer your question? Mark my post as a solution!

Hi Kelly,

 

How do I implement that because I feel like I've tried everything I can find on google that has this solution.

 

Cheers,

Hi @zachjudge ,

 

Sorry for the late reply.

I found a good example to address your issue:

https://powerbitalks.com/2020/08/convert-utc-into-local-time-zone-po.html

 

Best Regards,
Kelly

Did I answer your question? Mark my post as a solution!

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.