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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Anonymous
Not applicable

Percentage calculation values

I am calculating percentage of product values as below.

 

Prod % Value

A  5%
B  4%
C  10%
D  8%
E   9%
F   3%
G  11%
H  16%
I    18%
other 12%

 

But when I do Top 5 or exclude other, the percentage values shouldn't change, not sure how to get it done.

 

%Value is calculated as sum(value)/Total(Value)

 

Any thought.

 

Thanks,

2 ACCEPTED SOLUTIONS

@Anonymous

 

Have a look at the attached pbix file which shows the Top 5 applied on average.

 

 

If this helped you, please mark this post as an accepted solution and like to give KUDOS .

 

Regards,

Affan

View solution in original post

@Anonymous

 

Add a filter if you want to exclude product D

 

Percentage =
SUM ( Table[value] )
    / CALCULATE ( SUM ( Table[Value] ),  All(Table[Prod]), FILTER('Table' , Table[Prod] <> "D") )

 

 

View solution in original post

10 REPLIES 10
themistoklis
Community Champion
Community Champion

@Anonymous

 

A formual like the following may help you.

 

Percentage =
SUM ( Table[value] )
    / CALCULATE ( SUM ( Table[Value] ), ALL ( Table[Prod] ) )
Anonymous
Not applicable

Thanks for the reply, but how to restrict the product D in grand total.

 

Thanks,

@Anonymous

 

Add a filter if you want to exclude product D

 

Percentage =
SUM ( Table[value] )
    / CALCULATE ( SUM ( Table[Value] ),  All(Table[Prod]), FILTER('Table' , Table[Prod] <> "D") )

 

 

Anonymous
Not applicable

The formula works well, but when I do Top 2 records my percentage values are changing. but in the example it works well, but in real data is getting changed a lot. not sure why??

@Anonymous

You should use SUMX and Values.

 

Try the following formula:

Percentage =
SUMX ( VALUES( Table[Prod] ),
    CALCULATE ( SUM ( Table[value] ) )
     )
    /
SUMX ( VALUES( Table[Prod] ),
	CALCULATE ( SUM ( Table[Value] ),  All(Table[Prod]), FILTER('Table' , Table[Prod] <> "D") )
	)
AlB
Super User
Super User

Hi @Anonymous

Can you elaborate a bit more?

Is what you're showing a matrix with Prod on rows and  %Value (measure) in values?

What do you mean exactly by  "when I do Top 5 or exclude other" ?

Anonymous
Not applicable

Thanks AIB for the response, basically above %values shouldn't change when we do Top 5 in filter section or excluing any other Prod lov's.

 

Any idea.

Hi @Anonymous

 

You can acheive this by using ALL() in your measure.

 

It will be easier to help if you can show some sample data table from which you are creating this report.

 

It is better to explain the issue like below example.

 

"My problem is to get the id number separated from a column which shows the data as below."

My actual data is in a column as below

Column1
Hello12Monday
Hello14Tuesday

 

The reuslt I need should be

Column1ID No
Hello12Monday12
Hello14Tuesday14

 

 

This way you can explanin the issue clearly and instead of pasting the screenshots in the question please consider copying the excel table.

 

I hope this will lead solving the issue fast.

 

Regards

Affan

@Anonymous

 

Have a look at the attached pbix file which shows the Top 5 applied on average.

 

 

If this helped you, please mark this post as an accepted solution and like to give KUDOS .

 

Regards,

Affan

Anonymous
Not applicable

Hi Affan,

 

You are solution worked well, but in my scenario both numerator and denominator have many filters and it didn't worked as per the example which you share.

 

Any other thoughts?

 

Appreciated your support.

 

Thanks,
Thimma

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

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.