Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hi
i what to create a Mesure that rankink rows for groups of values order by number -
same as in sql row_number over (partition by X,Y,Z order by L)
is it possible?
thank you very mutch
oren
Solved! Go to Solution.
Please ignore the previous formula.
This one works:
Sorting_Rank =
RANKX (
FILTER(
ALL(
'Table'[A], 'Table'[B], 'Table'[C]
),
'Table'[A] = MAX('Table'[A]) &&
'Table'[B] = MAX('Table'[B])
),
CALCULATE(SUM('Table'[C])), , ASC, Dense
)
Please ignore the previous formula.
This one works:
Sorting_Rank =
RANKX (
FILTER(
ALL(
'Table'[A], 'Table'[B], 'Table'[C]
),
'Table'[A] = MAX('Table'[A]) &&
'Table'[B] = MAX('Table'[B])
),
CALCULATE(SUM('Table'[C])), , ASC, Dense
)
Try the following formula:
Sorting Rank = IF (
HASONEVALUE ( 'Table'[A]),
RANKX ( ALL ( 'Table'[A], 'Table'[B] ), SUM('Table'[C]), , ASC, Dense)
)
You may also try ISONORAFTER.
Never used ISONORAFTER before but will definately check. Thanks for Suggestion.
Please try like below.
Measure 11 = RANKX(FILTER(all(Table1),Table1[Column1] = max(Table1[Column1]) && Table1[Column2] = max(Table1[Column2])),CALCULATE(sum(Table1[Column3])),,ASC,Skip)
Regards
AJ
Do Like Post if response seems good and Worth liking.
Do Mark as Solution if response resolved your Issue.
it dosent work- i am getting only "1" ( but maybe i am doing somthing not right)
thanks
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.