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
luizronsani
Regular Visitor

Filter a visual based in the main filter

Hello,

 

Brief explanation: my report is based in weeks, which means the main filter is a week number that filter all data related to the dates in that specific week (ex: week 3 is from 14/01/2019 to 20/01/2019).

 

There is one visual that I show the data for the selected week, however, I need to show the previous 2 weeks in other 2 visuals. In this example, If I select week 3, another visual needs to filter week 2 and another visual week 1.

 

Couldn't attach an image here, so you can see in this link:

https://1drv.ms/u/s!AtzbRaYN5HqYgpto11TGN5drh62h_g

The visual in the right is showing data for a selected week, with this, the visuals in the left must show results for week -1 and -2.

 

Really appreciate any help here

Thanks

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

hi, @luizronsani 

For your case, Just create two measure for it as below:

Last week = CALCULATE(SUM('Table'[Value]),FILTER (ALL ( 'Date' ),'Date'[Year]=MAX('Date'[Year])&&'Date'[WEEKNUM]=MAX('Date'[WEEKNUM])-1))
Last 2 week = CALCULATE(SUM('Table'[Value]),FILTER (ALL ( 'Date' ),'Date'[Year]=MAX('Date'[Year])&&'Date'[WEEKNUM]=MAX('Date'[WEEKNUM])-2))

Result:

6.JPG

and here is sample pbix file, please try it.

 

Best Regards,

Lin

 

Community Support Team _ Lin
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

1 REPLY 1
v-lili6-msft
Community Support
Community Support

hi, @luizronsani 

For your case, Just create two measure for it as below:

Last week = CALCULATE(SUM('Table'[Value]),FILTER (ALL ( 'Date' ),'Date'[Year]=MAX('Date'[Year])&&'Date'[WEEKNUM]=MAX('Date'[WEEKNUM])-1))
Last 2 week = CALCULATE(SUM('Table'[Value]),FILTER (ALL ( 'Date' ),'Date'[Year]=MAX('Date'[Year])&&'Date'[WEEKNUM]=MAX('Date'[WEEKNUM])-2))

Result:

6.JPG

and here is sample pbix file, please try it.

 

Best Regards,

Lin

 

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

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