Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Above which i am provided it is output i want to create top 5 for the month of january 2024. and that top 5 spgrs i want to display m-3 accuracy percentage last 4 months like this
Not solved my issue pls help me on this
Hi @tkavitha911 ,
Does this help?:
TOPN (
5,
SUMMARIZE (
Table,
Table[Period],
Table[SPGR Real],
"ABS_ERROR", SUM ( Table[ABS ERROR] )
),
"ABS_ERROR", DESC
)
Please include the group by columns and the value column you want to summarize by in the formula.
Please use the formula for a calculated table.
i want to create a custom table to display latest month top 5 spgrs for each channel
Hi @tkavitha911 ,
Please try like this:
Create this measure:
Rank by Month =
RANKX(SUMMARIZE(Table,Table[Channel],Table[SPGR Real],"ABSERROR",SUM(Table[ABS Error])),[ABSERROR],DESC)
Then create this measure:
Top 5 = CALCULATE(SUM(Table[ABS Error]),FILTER(ALL(Table),Table[Period] = MAX(Table[Period]) && [Rank by Month] <=5))
Add the measure ('Top 5') to a table visualization and then add SPGRS and Channel column to the table.
Above which i am provided it is output i want to create top 5 for the month of january 2024. and that top 5 spgrs i want to display m-3 accuracy percentage last 4 months like this
Hi @tkavitha911 ,
I did not understand your requirement. Please provide all the requirement in the question itself.
Check out the July 2025 Power BI update to learn about new features.
User | Count |
---|---|
24 | |
10 | |
6 | |
6 | |
6 |
User | Count |
---|---|
29 | |
11 | |
11 | |
10 | |
6 |