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

Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started

Reply
gelsonwirtijr
Frequent Visitor

how to use a ranking dax measure as a filter

Hello everybody! I created a dax measure to calculate how much customers spent in different fiscal years and another dax measure to rank these customers based on their spending. I would like to use slicer (picture below)

gelsonwirtijr_0-1694010163800.png

so that in a table, for example, it only shows customers classified as "K", "A", "B" or "C". But this visual does not accept DAX measures.

Below is my measure that makes the classification of customers:

Classificação Cliente Peças =
VAR TotalServicos = [Realizado]
RETURN
    SWITCH(
        TRUE(),
        TotalServicos >= 1000000, REPT(UNICHAR(8203),1) & "K",
        TotalServicos >= 300000 && TotalServicos < 1000000, REPT(UNICHAR(8203),2) & "A",
        TotalServicos >= 50000 && TotalServicos < 300000, REPT(UNICHAR(8203),3) & "B",
        TotalServicos < 50000, REPT(UNICHAR(8203),4) & "C",
        BLANK()
    )


What can I do to be able to filter based on the client's class?
1 ACCEPTED SOLUTION
v-zhangti
Community Support
Community Support

Hi, @gelsonwirtijr 

 

You can try the following methods.
Create a new slicer table:

vzhangti_0-1694170944621.png

Measure = IF(SELECTEDVALUE(Slicer[Slicer])=BLANK(),1,IF(SELECTEDVALUE(Slicer[Slicer])=[Classificação Cliente Peças],1,0))

vzhangti_1-1694170977149.png

vzhangti_2-1694171012154.png

You can filter the views by this method.

 

Best Regards,

Community Support Team _Charlotte

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

4 REPLIES 4
v-zhangti
Community Support
Community Support

Hi, @gelsonwirtijr 

 

You can try the following methods.
Create a new slicer table:

vzhangti_0-1694170944621.png

Measure = IF(SELECTEDVALUE(Slicer[Slicer])=BLANK(),1,IF(SELECTEDVALUE(Slicer[Slicer])=[Classificação Cliente Peças],1,0))

vzhangti_1-1694170977149.png

vzhangti_2-1694171012154.png

You can filter the views by this method.

 

Best Regards,

Community Support Team _Charlotte

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

Hi @v-zhangti, I have a similar problem. The strategy worked to visualize the data in a table, but it doesn't work on a card, as it is not possible to put "Filtros_Peças is 1 ". Can you help me?

gelsonwirtijr_0-1694618450728.png

 

 

Hello @v-zhangti , thanks for the help! I don't know why, but he's not behaving the same way he did with you.

gelsonwirtijr_0-1694177713656.png

I created a table with the classes and followed the same steps.

gelsonwirtijr_1-1694177806913.png

 

The problem was REPT(), it worked, thank you!

 

Helpful resources

Announcements
Europe Fabric Conference

Europe’s largest Microsoft Fabric Community Conference

Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.

AugPowerBI_Carousel

Power BI Monthly Update - August 2024

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

August Carousel

Fabric Community Update - August 2024

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