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

Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now

Reply
Anonymous
Not applicable

Row wise percent of total

Dear Community !

 

Need your help to calculate row-wise totals as shown below:

image.png

 

(There are 232 Client Names in Category 1, etc, which mean Client_Sum itself is a calculated field.

 

Thanks in advance !

1 ACCEPTED SOLUTION
FreemanZ
Community Champion
Community Champion

hi @Anonymous 

Supposing you have a table with two columns: Category and Value,

try to plot a table visual with the Category column and two measures like:

Client_Sum =
SUM(TableName[Value])

Client_Perc =
DIVIDE(
SUM(TableName[Value]),
CALCULATE(SUM(TableName[Value]), ALL(TableName))
)

View solution in original post

3 REPLIES 3
FreemanZ
Community Champion
Community Champion

hi @Anonymous 

Supposing you have a table with two columns: Category and Value,

try to plot a table visual with the Category column and two measures like:

Client_Sum =
SUM(TableName[Value])

Client_Perc =
DIVIDE(
SUM(TableName[Value]),
CALCULATE(SUM(TableName[Value]), ALL(TableName))
)

djurecic
Super User
Super User

Anonymous
Not applicable

Hello !

 

Thanks for your response, infact I did look at this very post before posting my question. This is very close to what I need, howeve, my apologies, I am just a novice and couldn't figure out &/or manipulate the suggested steps to my requirement.

 

If you could please 'tune' it to mine, I will be really thankful.

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

February Power BI Update Carousel

Power BI Monthly Update - February 2026

Check out the February 2026 Power BI update to learn about new features.