Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
michael_andrews
Partner - Creator
Partner - Creator

Find average in drill down

Hi, I'd like to find the average of these items I have drilled down. If you look at this data

sum.png

I want to find the percentages (even though the column name is average score) here is what i have

//Count ItemID gets me 318

COUNT(ItemID) / COUNT({<ItemName = {"=ItemName"}>} ItemID)

Basically, I need to count all items that have the same parent item name

1 Solution

Accepted Solutions
sunny_talwar

or this if you want the percentage to stay intact if you make a selection in ItemResponse

Count(ItemID)/Count(TOTAL <ItemName> {<ItemResponse>} ItemID)

View solution in original post

3 Replies
sunny_talwar

May be like this

Count(ItemID)/Count(TOTAL <ItemName> ItemID)

sunny_talwar

or this if you want the percentage to stay intact if you make a selection in ItemResponse

Count(ItemID)/Count(TOTAL <ItemName> {<ItemResponse>} ItemID)

michael_andrews
Partner - Creator
Partner - Creator
Author

You are the man. Helping me hit a deadline in an hour. Thanks!