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

Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM. Register now.

Reply
atul9063
Helper III
Helper III

Slicer to Filter Data Specific Data

Hi,

 

I want to create slicer with value C1,C7,C28.When user select C28,then C1,C7 C28 should be filter and when user select C7 then C7 ,C1 should be filtered from below dataset.

 

PFB Below dataset for refernce 

 

 

DateUsersMetric
2/5/2018AC1
2/6/2018BC1
2/7/2018CC7
2/7/2018CC28
2/8/2018DC7
2/8/2018DC28

 

5 REPLIES 5
Anonymous
Not applicable

Hi @atul9063,

 

I'm not so sure for your description, can you please explain more about your requirement? Such as some expected result.

 

Regards,

Xiaoxin Sheng

@AnonymousWhen User select C28,then all rows in below dataset less than equal to C28(i.e C28,C7 and C1 ) should be filtered and when user select C7 then all rows less and equal to C7(i.e C7 and C1) should be filtered. 

image.png

Anonymous
Not applicable

Hi @atul9063,

 

Please refer to below steps to achieve your requirement.

 

Steps:

1. Create a new table with all metric types and use new table column as source of slicer.

Selector = VALUES(Table1[Metric])

2. Write a measure to compare selected metric and current row contents.

filter check = 
VAR selected =
    ALLSELECTED ( Selector[Metric] )
VAR _filter =
    MAXX (
        SUMMARIZE (
            FILTER ( ALLSELECTED ( Table1 ), [Metric] IN selected ),
            [Metric],
            "MinDate", MIN ( Table1[Date] )
        ),
        [MinDate]
    )
RETURN
    IF ( SELECTEDVALUE ( Table1[Date] ) <= _filter, "Y", "N" )

Use raw data to create a table visual, drag above measure to visual level filter to filter 'N' result records.

64.gif

 

Regards,

Xiaoxin Sheng

@Anonymous  Actually below is dataset

 

Selecting churn7 on slicer would filter the below table for Churn='Churn7' or Churn='Churn1'

similarly on selecting churn28, filter would be Churn='Churn1' or Churn='Churn7' or Churn='Churn28' so output would be

 

TPIDChurn

1Churn1
2Churn7
3Churn1
4Churn28
5Churn7
6No Churn

 

@Anonymous Could you please look into this problem

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.