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

The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more

Reply
Anonymous
Not applicable

Ignore the slicer Item on dax function .

Hi All  ,

 

I have a slicer called Customer type which shows the below options to the users.

  • All
  • Validated
  • Signed up

 

I am trying to create a one Card KPI which should show the values based on the below conditions.

 

  • When user selected the slicer values set to “ALL” I would like to show the Validated value.
  • When user selected wither “validated” or “signed up”, I would like to show the “ALL” value.

 

Ex: Let’s say  I have a values for validated as “10K” and values for ALL as ‘’15K”

 

Now user selected slicer is ALL ..Then the Card KPI value should show “Validated  Members  = 10” and Then user selected slicer set to either validated or signed up then the Card KPI value should show “Total Members = 15K”

 

Please find my workaround for this.

 

I have created a 2 new Mesures (dax Function )

Validated = sum(no_validated)

Singed up  = sum( no_singed up)

Total   = Validated + signed up

 

 

Final Measure for Card KPI

 

Measure = IF (

    SELECTEDVALUE (Table1(Customer_type),

        

    [Total],

    [Validated]

)

 

By using above Dax function I can see the values as excepting but when I select the Signed up as a slicer values “0”

 

Can you please suggest how to achieve this

2 ACCEPTED SOLUTIONS
v-lili6-msft
Community Support
Community Support

hi, @Anonymous 

You could use ALL , ALLEXCEPT Function in dax formula to ignore the slicer like below:

Measure = 
IF (
    SELECTEDVALUE ( 'Table'[Customer_type] ) = "All",
    CALCULATE (
        SUM ( 'Table'[Value] ),
        FILTER ( ALL ( 'Table' ), 'Table'[Customer_type] = "Validated" )
    ),
    CALCULATE (
        SUM ( 'Table'[Value] ),
        FILTER ( ALL ( 'Table' ), 'Table'[Customer_type] = "All" )
    )
)

Result:

8.JPG9.JPG

here is the 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

Anonymous
Not applicable

Hi,

 

Thanks for your respones.

 

I achived the above one by using "HASONEVALUE" function.


Ex: IF (HASONEVALUE('Table'[Customer_type] ), [Total_member],[validated_members])

 

its worked me well the way i wanted.

View solution in original post

2 REPLIES 2
v-lili6-msft
Community Support
Community Support

hi, @Anonymous 

You could use ALL , ALLEXCEPT Function in dax formula to ignore the slicer like below:

Measure = 
IF (
    SELECTEDVALUE ( 'Table'[Customer_type] ) = "All",
    CALCULATE (
        SUM ( 'Table'[Value] ),
        FILTER ( ALL ( 'Table' ), 'Table'[Customer_type] = "Validated" )
    ),
    CALCULATE (
        SUM ( 'Table'[Value] ),
        FILTER ( ALL ( 'Table' ), 'Table'[Customer_type] = "All" )
    )
)

Result:

8.JPG9.JPG

here is the 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.
Anonymous
Not applicable

Hi,

 

Thanks for your respones.

 

I achived the above one by using "HASONEVALUE" function.


Ex: IF (HASONEVALUE('Table'[Customer_type] ), [Total_member],[validated_members])

 

its worked me well the way i wanted.

Helpful resources

Announcements
Power BI DataViz World Championships

Power BI Dataviz World Championships

The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!

December 2025 Power BI Update Carousel

Power BI Monthly Update - December 2025

Check out the December 2025 Power BI Holiday Recap!

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.