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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

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
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.