Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi Folks,
I have below sample table in my dashboard:
Using SUM() and AVG() over data and pivoting Col2 I got below o/p:
I need to hide AVG expression without supressing its Total as shown below:
I have tried Dimensionality() and SecondaryDimensionality() but couldn't find proper solution.
Please help.
Thanks in advance,
Parag
I Think of 2 possible solutions
(sum(x) +sum(y))/ (count(col1)+count(col2)) as total average
or
avg(
Aggr(sum(x+y)
,
Col1,col2
)
Both expressions should calculate the total average