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
StuBee
Helper I
Helper I

Visual Level Filters Relative to Page Level

Hi All,

 

Would anyone know if it is possible to have a visual level filter relative to the page level filter.

 

For example, having a graph that is set to view last 5 days of work from today (24th Jan). While there is a filter on the page for all graphs to adjust the time period. So when the page level filter is set to a weeks ago(17th Jan), the graph views the last 5 days from 17th back.

 

Thank you 

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @StuBee ,

 

Please refer to the measure below instead of a visual level filter.

Measure = IF(SELECTEDVALUE('Table'[date])>CALCULATE(MAX('Table'[date]),ALLSELECTED('Table'))-5,1,0)

 Result would be shown as below.

1.PNG2.PNG

 

Best Regards,

Jay

Community Support Team _ Jay Wang

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

3 REPLIES 3
Anonymous
Not applicable

Hi @StuBee ,

 

Please refer to the measure below instead of a visual level filter.

Measure = IF(SELECTEDVALUE('Table'[date])>CALCULATE(MAX('Table'[date]),ALLSELECTED('Table'))-5,1,0)

 Result would be shown as below.

1.PNG2.PNG

 

Best Regards,

Jay

Community Support Team _ Jay Wang

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Anonymous
Not applicable

Power BI gives users the ability to fine tune how a slicer impacts the appearance of other visuals on the report canvas and vice versa. Enabling the Edit interactions option on the Format tab gives authors more options for controlling filters on a per-visual basis.

amitchandak
Super User
Super User

Can a measure like this help?

Rolling last 7 before 7 = CALCULATE(sum(Sales[Sales Amount]),DATESINPERIOD('Date'[Date],(dateadd('Date'[Date],-7,DAY)),-7,DAY))

This needs date table.

To get the best of the time intelligence function. Make sure you have a date calendar and it has been marked as the date in model view. Also, join it with the date column of your fact/s.

Refer
https://radacad.com/creating-calendar-table-in-power-bi-using-dax-functions
https://www.archerpoint.com/blog/Posts/creating-date-table-power-bi

https://www.sqlbi.com/articles/creating-a-simple-date-table-in-dax/

Appreciate your Kudos. In case, this is the solution you are looking for, mark it as the Solution. In case it does not help, please provide additional information and mark me with @
Thanks. My Recent Blog -
Winner-Topper-on-Map-How-to-Color-States-on-a-Map-with-Winners , HR-Analytics-Active-Employee-Hire-and-Termination-trend
Power-BI-Working-with-Non-Standard-Time-Periods And Comparing-Data-Across-Date-Ranges

Connect on Linkedin

 

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Helpful resources

Announcements
November Power BI Update Carousel

Power BI Monthly Update - November 2025

Check out the November 2025 Power BI update to learn about new features.

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!

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