Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Join us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.

Reply
motyagi
Helper I
Helper I

Summarizing and Fixing aggregation on a higher level

DATA 

Project NoProject TypeTotal cost Invoiceable 
12A100Y
1A20Y
2B30N
45C44N
78D69N
12C100N
4C20N
5C30Y

 

I want to be able to pick the top N (dynamic ) project Types based on Total Cost 

So for example i want it to summarize on Project Type first 

 

Project TypeTotal cost 
A120
B30
C194
D69

 

then the top 1 would be C - 194

top 2 would be C and A with 194 and 120 resp. 

And i want this top N to not be a measure as I need to put this on a donut chart or visual and measure can't be used as legends on visuals .

 

 

PLEASE HELP ! 

3 REPLIES 3
v-jiascu-msft
Microsoft Employee
Microsoft Employee

Hi @motyagi,

 

You can add a calculated table like this.

SummarizedTable =
SUMMARIZE (
    'Table1',
    Table1[Project Type],
    "Total", SUM ( Table1[Total cost] ),
    "top n", RANKX (
        ALL ( Table1 ),
        CALCULATE (
            SUM ( Table1[Total cost] ),
            ALLEXCEPT ( Table1, Table1[Project Type] )
        ),
        ,
        ,
        DENSE
    )
)

Summarizing_and_Fixing_aggregation_on_a_higher_level

 

Best Regards,

Dale

Community Support Team _ Dale
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Thank you ! I got to this point but I'm stuck with the labels after the rank function . 

 

I want to lable the top 2 projects as  - In assessment when 2 is selected. 

This 2 is coming from another excel file which is an input parameter file 

 

Label = IF([Rank] > SELECTEDVALUE(Input_Para[Projects_Included_In_View]),"Excluded ","Included ")

 

this doesn't work !

Is it cause the input_para table is not linked to my table 

Hi @motyagi,

 

What's the type of "Label"? A measure or a calculated column?

Did you select any items in the slicer? Can you share some snapshots or the pbix file?

 

Best Regards,

Dale

Community Support Team _ Dale
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

Check out the June 2025 Power BI update to learn about new features.

June 2025 community update carousel

Fabric Community Update - June 2025

Find out what's new and trending in the Fabric community.