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

Earn the coveted Fabric Analytics Engineer certification. 100% off your exam for a limited time only!

Reply

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 @Wilianfilho_ps ,

 

 

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 @Wilianfilho_ps ,

 

 

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)

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

Helpful resources

Announcements
April AMA free

Microsoft Fabric AMA Livestream

Join us Tuesday, April 09, 9:00 – 10:00 AM PST for a live, expert-led Q&A session on all things Microsoft Fabric!

March Fabric Community Update

Fabric Community Update - March 2024

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

Top Solution Authors