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

Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now

Reply
gboiero
New Member

Problem Filter Today shows me data from tomorrow without respecting my time zone

Hello!

I have a dashboard with a page that filters today's data. However, in Power BI Desktop and Web after 9pm (I am in geographic zone -3) it stops showing today's data, since the filter interprets that it is tomorrow.
I have the correct geozone on my PC, in Power BI Desktop and Service, but I can't get it to work correctly. Is it a PowerBI bug? Can you help me?
Thanks.

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @gboiero ,

 

The condition can happen because Power BI service operates on UTC time, which can cause discrepancies when you’re in a different time zone. If you use DAX functions like TODAY() or NOW(). These functions return the server’s date and time, which may not match your local time zone. 

 

You can refer to these links, these methods explained help ensure that the date and time displayed in Power BI reports are accurate for your specific time zone.:

Solving DAX Time Zone Issue in Power BI - RADACAD& Power BI Service Time Differences and How to Fix It (linkedin.com)

 

Best Regards,
Zhu
Community Support Team

 

If there is any post helps, then please consider Accept it as the solution  to help the other members find it more quickly.
If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!

View solution in original post

2 REPLIES 2
Anonymous
Not applicable

Hi @gboiero ,

 

The condition can happen because Power BI service operates on UTC time, which can cause discrepancies when you’re in a different time zone. If you use DAX functions like TODAY() or NOW(). These functions return the server’s date and time, which may not match your local time zone. 

 

You can refer to these links, these methods explained help ensure that the date and time displayed in Power BI reports are accurate for your specific time zone.:

Solving DAX Time Zone Issue in Power BI - RADACAD& Power BI Service Time Differences and How to Fix It (linkedin.com)

 

Best Regards,
Zhu
Community Support Team

 

If there is any post helps, then please consider Accept it as the solution  to help the other members find it more quickly.
If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!

Hi!

Thanks! I resolved it to add new column in the calendar table with DAX formule. When UTC Hour is between 0 and 3AM, I add one day to original date, so compared this column date with filter today. For example: 

FechaTMZ0 =
var HoraPBIServer = UTCNOW()
return IF(
    AND(HOUR(HoraPBIServer)>= 0, HOUR(HoraPBIServer)<=3),
    calendario[Fecha]+1,
    (calendario[Fecha])
)

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

February Power BI Update Carousel

Power BI Monthly Update - February 2026

Check out the February 2026 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.