Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hello friends,
I need a help on to find the ranking of applications based on its value in month wise and year wise. see the attachment. can you help this
Solved! Go to Solution.
Hi @RENJITH_R_S ,
Please refer to my pbix file to see if it helps you.
Create measures and columns.
total value = var _1= CALCULATE(SUM('Table'[Value]),FILTER(ALL('Table'),'Table'[Year]=EARLIER('Table'[Year])&&'Table'[Application]=EARLIER('Table'[Application])))
return
_1Measure = RANKX(FILTER(ALL('Table'),'Table'[Year]=SELECTEDVALUE('Table'[Year])),CALCULATE(MAX('Table'[total value])),,DESC,Dense)Measure 2 = RANKX(FILTER(ALL('Table'),'Table'[Month]=SELECTEDVALUE('Table'[Month])&&'Table'[Year]=SELECTEDVALUE('Table'[Year])),CALCULATE(MAX('Table'[Value])),,DESC,Dense)
How to Get Your Question Answered Quickly
If it does not help, please provide more details with your desired output and pbix file without privacy information (or some sample data) .
Best Regards
Community Support Team _ Polly
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @RENJITH_R_S ,
Please refer to my pbix file to see if it helps you.
Create measures and columns.
total value = var _1= CALCULATE(SUM('Table'[Value]),FILTER(ALL('Table'),'Table'[Year]=EARLIER('Table'[Year])&&'Table'[Application]=EARLIER('Table'[Application])))
return
_1Measure = RANKX(FILTER(ALL('Table'),'Table'[Year]=SELECTEDVALUE('Table'[Year])),CALCULATE(MAX('Table'[total value])),,DESC,Dense)Measure 2 = RANKX(FILTER(ALL('Table'),'Table'[Month]=SELECTEDVALUE('Table'[Month])&&'Table'[Year]=SELECTEDVALUE('Table'[Year])),CALCULATE(MAX('Table'[Value])),,DESC,Dense)
How to Get Your Question Answered Quickly
If it does not help, please provide more details with your desired output and pbix file without privacy information (or some sample data) .
Best Regards
Community Support Team _ Polly
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
@Anonymous Thank You for your help
Hi !
@RENJITH_R_S
I Cretaed one logic It have work fine.
Step 1
You should create one calculated column based "YYYYMMDD" this Format .It will Came we change the Integer.that also I reated.
Below Formulas.
Step 2
You Should created a measure to rank based on Month Year and Date .
I hope this will help to You.
Thanks,
Thennarasu
@RENJITH_R_S , if you need combine rank
rankx(allselected(Date[Year], date[Month]), [Value Meausre])
This will rank inside the application, if you need an application also then
rankx(Summarize(allselected(Fact), Fact[Application], Date[Year], date[Month]), [Value Meausre])
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!