Anybody has an idea why i cant use pivot table count value that is a number for a calculated field in that same pivot table? Here is the picture of what i mean:
Every time i try to use the value from "Count" column it returns the #VALUE.
It might be a formatting issue where excel is not understanding that one of the numbers is a number. There are a couple of ways to address the issue.
=D4/C4
or=GETPIVOTDATA("Sum of Sum",$A$3,"Top","Top","Name","Bottom
")/GETPIVOTDATA("Count of Count",$A$3,"Top","Top","Name","Bottom ")
VALUE()
function to create
=VALUE(D4)/VALUE(C4)
or =VALUE(GETPIVOTDATA("Sum of Sum",$A$3,"Top","Top","Name","Bottom
"))/VALUE(GETPIVOTDATA("Count of
Count",$A$3,"Top","Top","Name","Bottom "))
Hopefully one of these options will help you get what you need.