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

Pivot table - Show values as % of row

Hi all,

I would like to show the values in the column '% Re Reviewed' as % of row.

For example the first row: 82/(82+5)=94.25% and 5/(82+5)=5.75%

Capture.PNG

How do I do it?

1 Solution

Accepted Solutions
sunny_talwar

Try this expression

Count([Task Name])/Count(TOTAL <Region, Country_Cluster> [Task Name])

Assuming your Count of Task Name expression is this

Count([Task Name])

View solution in original post

2 Replies
sunny_talwar

Try this expression

Count([Task Name])/Count(TOTAL <Region, Country_Cluster> [Task Name])

Assuming your Count of Task Name expression is this

Count([Task Name])

Anonymous
Not applicable
Author

It works!

Just changed the [Task Name] to [Task_Name]


Thanks a lot!