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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
Anonymous
Not applicable

Relative Day Filtering is calculating based on another time zone.

I created a report that provides previous day data, and it works very well, except one issue that I can't seem to figure out.

 

So, I have my Date filters set to grab previous day data (is in the last 1 day, and unchecked include today). This works great in the mornings, but as the afternoon comes around, it begins grabbing today's data. I know this uses UTC time zone, but I need to have the reports filter based on PST. This also creates issues with the report subscriptions.

 

How can I have the report keep the correct relative filtering all day? 

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

Hi shradhara2,

 

To achieve the localtime which will not be affected with successive calls, you should add an offset in your measure using DAX like below:

 

Local Time =
NOW () + TIME ( 8, 0, 0 )

 

Or you can use power query function DateTimeZone.FixedLocalNow to achieve your localtime instead.

 

Regards,

Jimmy Tao

View solution in original post

1 REPLY 1
v-yuta-msft
Community Support
Community Support

Hi shradhara2,

 

To achieve the localtime which will not be affected with successive calls, you should add an offset in your measure using DAX like below:

 

Local Time =
NOW () + TIME ( 8, 0, 0 )

 

Or you can use power query function DateTimeZone.FixedLocalNow to achieve your localtime instead.

 

Regards,

Jimmy Tao

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 2025 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.

Top Solution Authors