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
Anonymous
Not applicable

Measure doesn't calculate dinamically

Hi guys, 

I created a measure and it should be calculated a RANKX dinamically in the visual when I change the slicer (date field) , however it is not work. Somebody can help me to solve this?

I attached a pbix file with an example. Download pbix file 

Tks!

 

it is the Measure Code

measure code.pngCorrect visual.png

Wrong visual.png

1 ACCEPTED SOLUTION
harshnathani
Community Champion
Community Champion

Hi @Anonymous ,

 

 

1.jpg

Create these 2 measures

 

Total Vendas Sum = SUM(Vendas[TotalVendas])
 
RANKI =
IF(NOT(ISBLANK([Total Vendas Sum])),
RANKX (
        FILTER(
            ALLSELECTED(
                'Vendas'[Grupo],Vendas[Nome Cliente]),
            'Vendas'[Grupo] = MAX(Vendas[Grupo])
            ),
            CALCULATE(SUM(Vendas[TotalVendas]))
            ))
 
 

Regards,
Harsh Nathani

Did I answer your question? Mark my post as a solution! Appreciate with a Kudos!! (Click the Thumbs Up Button)

View solution in original post

2 REPLIES 2
harshnathani
Community Champion
Community Champion

Hi @Anonymous ,

 

 

1.jpg

Create these 2 measures

 

Total Vendas Sum = SUM(Vendas[TotalVendas])
 
RANKI =
IF(NOT(ISBLANK([Total Vendas Sum])),
RANKX (
        FILTER(
            ALLSELECTED(
                'Vendas'[Grupo],Vendas[Nome Cliente]),
            'Vendas'[Grupo] = MAX(Vendas[Grupo])
            ),
            CALCULATE(SUM(Vendas[TotalVendas]))
            ))
 
 

Regards,
Harsh Nathani

Did I answer your question? Mark my post as a solution! Appreciate with a Kudos!! (Click the Thumbs Up Button)

Anonymous
Not applicable

That's all Harsh, tks a lot for your help. It worsk!!!

Helpful resources

Announcements
Sept PBI Carousel

Power BI Monthly Update - September 2024

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

September Hackathon Carousel

Microsoft Fabric & AI Learning Hackathon

Learn from experts, get hands-on experience, and win awesome prizes.

Sept NL Carousel

Fabric Community Update - September 2024

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