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
KiranGupta15
Frequent Visitor

2nd row value in 1st row

Hi All,

 

I m fresh to BI, I have a problem with delta calculation from a column.

I have a maeasure to calculate the count for every rank.

Can some one help to calculate the delta from next row score.

 

Thanks in advance 

RankCountScoreDelta
1241624476(=244-168) 
2187016843
3182612523
4166710221
516098152
61080298
793921 
1 ACCEPTED SOLUTION

@KiranGupta15, you may want to adjust the measurement this way

Delta = 
VAR __next_rank = MAX ( 'Table'[Rank] ) + 1
VAR __next_score =
    CALCULATE (
        [Score],
        'Table'[Rank] = __next_rank,
        ALL ( 'Table' )
    )
RETURN
    IF ( NOT ISBLANK ( __next_score ), [Score] - __next_score )


Thanks to the great efforts by MS engineers to simplify syntax of DAX! Most beginners are SUCCESSFULLY MISLED to think that they could easily master DAX; but it turns out that the intricacy of the most frequently used RANKX() is still way beyond their comprehension!

DAX is simple, but NOT EASY!

View solution in original post

4 REPLIES 4
v-rzhou-msft
Community Support
Community Support

Hi @KiranGupta15 

Could you tell me if your problem has been solved? If it is, kindly Accept it as the solution. More people will benefit from it. Or you are still confused about it, please provide me with more details about your problem or share me with your pbix file from your Onedrive for Business.

 

Best Regards,

Rico Zhou

CNENFRNL
Community Champion
Community Champion

Hi, @KiranGupta15 , you might try this measure

Delta = 
VAR __next_rank = MAX ( 'Table'[Rank] ) + 1
VAR __next_score =
    CALCULATE (
        MAX ( 'Table'[Score] ),
        'Table'[Rank] = __next_rank,
        ALL ( 'Table' )
    )
RETURN
    IF ( NOT ISBLANK ( __next_score ), MAX ( 'Table'[Score] ) - __next_score )

Thanks to the great efforts by MS engineers to simplify syntax of DAX! Most beginners are SUCCESSFULLY MISLED to think that they could easily master DAX; but it turns out that the intricacy of the most frequently used RANKX() is still way beyond their comprehension!

DAX is simple, but NOT EASY!

Thanks sir....

My "Score"  is a Measure, not a column in table.

 

"Column 'Score' in table 'Table' cannot be found or may not be used in this expression."

This is the error message ...:

@KiranGupta15, you may want to adjust the measurement this way

Delta = 
VAR __next_rank = MAX ( 'Table'[Rank] ) + 1
VAR __next_score =
    CALCULATE (
        [Score],
        'Table'[Rank] = __next_rank,
        ALL ( 'Table' )
    )
RETURN
    IF ( NOT ISBLANK ( __next_score ), [Score] - __next_score )


Thanks to the great efforts by MS engineers to simplify syntax of DAX! Most beginners are SUCCESSFULLY MISLED to think that they could easily master DAX; but it turns out that the intricacy of the most frequently used RANKX() is still way beyond their comprehension!

DAX is simple, but NOT EASY!

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.

Top Solution Authors