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
CupidC
Helper II
Helper II

Removing Select Page Filters in the Same Table dax

Hello,

 

I'm facing a challenge and could use some assistance. Currently, I have three page filters in use, and I'm looking to remove only two of them, and the filter are in the same table.

 

In the scenario outlined below:

I'm utilising page filters for Weekday, Weekending, and Date.

 

My objective is to eliminate the Weekday and Weekending filters while displaying the minimum date from the Date filter.

 

I aim to have the card show '7/12/2022' instead of '7/17/2022'. I've attempted two measures, but they didn't show the desired results. Any guidance or assistance would be greatly appreciated.

Min date 1=CALCULATE(min('date'[Date]),all('date'))
Min date 2= CALCULATE(min('date'[Date]),REMOVEFILTERS('date'[Weekday]),REMOVEFILTERS('date'[Weekending]))

CupidC_0-1699591154630.png

 






1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @CupidC 

If you use the page filters, the visual will always affected by the filter, it't better that remove the 'weekday' and weekend' filters from page filter, then create two slicers , one is weekday, the other is 'weekend', then you can set the slicer , then if you want to the card won't affect by the slicers, you can set the 'Edit interaction' for the two slicers to set the card will not affected by the slicers.

vxinruzhumsft_0-1699929435934.png

vxinruzhumsft_2-1699929489081.png

you can refer to the following link about edit interaction.

https://learn.microsoft.com/en-us/power-bi/create-reports/service-reports-visual-interactions?tabs=p...

 

Then you can put the following measure to the visual card.

Min date 1=CALCULATE(min('date'[Date]),allselected('date'))

Output

vxinruzhumsft_3-1699929695199.png

 

 

Best Regards!

Yolo Zhu

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

2 REPLIES 2
Anonymous
Not applicable

Hi @CupidC 

If you use the page filters, the visual will always affected by the filter, it't better that remove the 'weekday' and weekend' filters from page filter, then create two slicers , one is weekday, the other is 'weekend', then you can set the slicer , then if you want to the card won't affect by the slicers, you can set the 'Edit interaction' for the two slicers to set the card will not affected by the slicers.

vxinruzhumsft_0-1699929435934.png

vxinruzhumsft_2-1699929489081.png

you can refer to the following link about edit interaction.

https://learn.microsoft.com/en-us/power-bi/create-reports/service-reports-visual-interactions?tabs=p...

 

Then you can put the following measure to the visual card.

Min date 1=CALCULATE(min('date'[Date]),allselected('date'))

Output

vxinruzhumsft_3-1699929695199.png

 

 

Best Regards!

Yolo Zhu

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

 

Anonymous
Not applicable

If you want to remove the Weekday and Weekending filters while displaying the minimum date from the Date filter, you can follow these steps:

Remove Weekday and Weekending Filters:

  • In Power BI Desktop, go to the page where you have these filters.
  • In the Fields pane, find the table containing the Weekday and Weekending fields.
  • Right-click on the fields (Weekday and Weekending) that you want to remove filters for.
  • Select "Remove from report."

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