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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
manish2k
Regular Visitor

Calculating percentage based on multiple top N parameters

HI ,

 

I have a table with supplier name , their category and their spend . I need to create a visual table which will show me the fragmentation of supplier spend across these categories . The output I am looking for in the visual is something like this :

 

CategoryTop 3 Suppliers contribution to overall category spend

Top 5 Suppliers

contribution to overall category spend

Top 10 Suppliers

contribution to overall category spend

A75%85%100%
B55%65%70%
C20%25%30%


  

Any ideas on how to go about this ?

 

1 ACCEPTED SOLUTION
Phil_Seamark
Employee
Employee

Hi @manish2k

 

Try creating a calculated table that summarises the data using this code

 

Summary Table = SUMMARIZE(
                    'Table1',
                    Table1[Supplier Name],
                    'Table1'[Category] ,
                    "Total Spend",SUM('Table1'[Spend]) 
                ) 

Then add the following calculated column to this newly created table

 

Supplier Category Rank = 
	CALCULATE(
		COUNTROWS('Summary Table'),
		FILTER('Summary Table',
			'Summary Table'[Category] = EARLIER('Summary Table'[Category]) 
			&& 'Summary Table'[Total Spend] >= EARLIER('Summary Table'[Total Spend]
				)
				)
				)+0

Finally create the following measure

 

Top 3 Suppliers contribution to overall cat spend = 

VAR TopNValue = 3
VAR Top3Spend = CALCULATE(
SUM('Summary Table'[Total Spend]),
FILTER(
ALLEXCEPT('Summary Table','Summary Table'[Category]),
'Summary Table'[Supplier Category Rank]<=TopNValue)
)
VAR TotalSpend = CALCULATE(SUM('Summary Table'[Total Spend]),ALLEXCEPT('Summary Table','Summary Table'[Category]))
RETURN DIVIDE(Top3Spend,TotalSpend)

and format the measure to be a percentage.  I think this might be close 🙂

 

If it's close, just clone the final measure 2 times for the other TopN values

 


To learn more about DAX visit : aka.ms/practicalDAX

Proud to be a Datanaut!

View solution in original post

3 REPLIES 3
Phil_Seamark
Employee
Employee

Hi @manish2k

 

Try creating a calculated table that summarises the data using this code

 

Summary Table = SUMMARIZE(
                    'Table1',
                    Table1[Supplier Name],
                    'Table1'[Category] ,
                    "Total Spend",SUM('Table1'[Spend]) 
                ) 

Then add the following calculated column to this newly created table

 

Supplier Category Rank = 
	CALCULATE(
		COUNTROWS('Summary Table'),
		FILTER('Summary Table',
			'Summary Table'[Category] = EARLIER('Summary Table'[Category]) 
			&& 'Summary Table'[Total Spend] >= EARLIER('Summary Table'[Total Spend]
				)
				)
				)+0

Finally create the following measure

 

Top 3 Suppliers contribution to overall cat spend = 

VAR TopNValue = 3
VAR Top3Spend = CALCULATE(
SUM('Summary Table'[Total Spend]),
FILTER(
ALLEXCEPT('Summary Table','Summary Table'[Category]),
'Summary Table'[Supplier Category Rank]<=TopNValue)
)
VAR TotalSpend = CALCULATE(SUM('Summary Table'[Total Spend]),ALLEXCEPT('Summary Table','Summary Table'[Category]))
RETURN DIVIDE(Top3Spend,TotalSpend)

and format the measure to be a percentage.  I think this might be close 🙂

 

If it's close, just clone the final measure 2 times for the other TopN values

 


To learn more about DAX visit : aka.ms/practicalDAX

Proud to be a Datanaut!

@Phil_Seamark I have one change to ask , what if the main summary table gets one more filer . Let say a department . How will i be able to incorporate it into the below code?

Awesome ! This worked ! Thanks a million !

Helpful resources

Announcements
LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.

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.