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
Boudewijn
Frequent Visitor

Slicer filter another slicer

Power BI Set up;

- 1 Table

- Slicer 1 (Between) for column A (Values)

- Slicer 2 (Between) for column B (Date)

 

Goal:

[Count values filtered by slicer 1 and slicer 2] divided by [Count Values filtered only by slicer 2]

 

I have tried filters ALL, ALLSELECT and ALL EXCEPT.

I can filter with slicer 1 from 0 to 10, but it doesn't work with slicer 1 from 3 to 10.

 

Thanks for your effort!

 

Boudewijn

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

Hi @Boudewijn

in my test, 

[Count values filtered by slicer 1 and slicer 2] ---Measure

divided by

[Count Values filtered only by slicer 2]    ---------Measure 2

 

Best Regards

Maggie

 

View solution in original post

6 REPLIES 6
v-juanli-msft
Community Support
Community Support

Hi @Boudewijn

in my test, 

[Count values filtered by slicer 1 and slicer 2] ---Measure

divided by

[Count Values filtered only by slicer 2]    ---------Measure 2

 

Best Regards

Maggie

 

Maggie, I'm really impressed, brilliant!! It is just what the doctor ordered! Thanks for your efforts!

Maggie, I'm really impressed, brilliant!! It is just what the doctor ordered! Thanks for your efforts!

v-juanli-msft
Community Support
Community Support

Hi @Boudewijn

Create a date table 

New table-> enter the following formula

Table = CALENDARAUTO()

leave no relationship between this date table and your table

4.png

 

Create measures

MIN = MIN('Table'[Date])

Max = MAX('Table'[Date])

Measure =
CALCULATE (
    COUNT ( Sheet3[index] ),
    FILTER ( ALLSELECTED ( Sheet3 ), [columnB] >= [MIN] && [columnB] <= [Max] )
)

Measure 2 =
CALCULATE (
    COUNT ( Sheet3[index] ),
    FILTER ( ALL ( Sheet3 ), [columnB] <= [Max] && [columnB] >= [MIN] )
)

3.png

 

Best Regards

Maggie

 

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

Boudewijn
Frequent Visitor

I found the problem;

 

If the slicer 2 (between) for column B (date) is formatted as date (1-1-2018  / 31-12-2018), it will not work.

 

If the slicer 2 (between) for column B (date) is formatted as decimal (2018 / 2018), it work's.

 

What to do if I want to filter on date format???

Anonymous
Not applicable

Hi @Boudewijn

 

Please post or share some sample data and the output expected to arrive at a solution.

 

 

Cheers

CheenuSing

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