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
dpbi
Helper I
Helper I

Cumulative measure based on dynamic measure – Slicer problem

Hi, need some help with the following:

 

The Visual

The visual shows the ranking of items based on the last time they were sold ('worst' to 'best')

The ‘PartID’ field is a column from the material table – ‘Products’. The other three fields are measures.

The ‘Cumulative Gap’ measure is a running total of the ‘Gap From Last Transaction’ measure.

 Without using a slicer, the visual shows correct results for all the fields.

 

Capture1.PNG

 

The problem

When adding a slicer, and adding ALLSELECTED to the measures, the ‘Gap From Last Transaction’ results are correct but the ‘Cumulative Gap’ shows the whole total in each cell instead of running total (left image)

 If I remove ALLSELECTED from the measures, the ‘Cumulative Gap’ works as expected, but the results of the ‘Gap From Last Transaction’ are incorrect (obviously, because I removed ALLSELECTED) (right image).

 

Capture2.PNG

 

these are the measures (i used index column similar to date column):

 

Gap From Last Transaction =

VAR MaxIndex = MAX ( Sales [ Index ] )

VAR LastBuy = CALCULATE( MAX ( Sales [ Index] ) ,

                        FILTER (ALLSELECTED (Sales) ,

                        Sales [ PartID ] =  FIRSTNONBLANK( Products [ PartID ] ,  Products [ PartID ] ) ) )

RETURN

LastBuy - MaxIndex + 1

 

Total Gaps =  SUMX ( Products , [ Gap From Last Transaction ] )

 

Cumulative Gap =

CALCULATE ( [ Total Gaps ] ,

FILTER (

ALLSELECTED( Products [ PartID ] ), SUMX ( Products , [ Total Gaps ] )  <= [ Total Gaps ] ))

 

Rank =

CALCULATE ( RANKX ( ALLSELECTED ( Products [ PartID] ) ,[Gap From Last Transaction ] ,,DESC ) )

 

 

Tanks for the help.

1 ACCEPTED SOLUTION
Vvelarde
Community Champion
Community Champion

@dpbi

 

Hi, please review this PBIX.

 

Sample File

 

Regards

 

Victor

Lima - Peru




Lima - Peru

View solution in original post

3 REPLIES 3
Vvelarde
Community Champion
Community Champion

@dpbi

 

Hi, please review this PBIX.

 

Sample File

 

Regards

 

Victor

Lima - Peru




Lima - Peru

@Vvelarde

 

Hi Victor.

Many thanks for your fast response and sample file.

Your solution works perfectly! 

Definitely, one of the best features of Power Bi Desktop is this forum.

Best Regards,

 

Dan

Vvelarde
Community Champion
Community Champion

@dpbi

 

Thank you, your very clear description of the scenario helped me a lot.

 

Regards

 

Victor




Lima - Peru

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.