I have created a calculated field, say “derivedAttribute” in Table using the below code:
(sumOver(sum(hascashCollected),
[stage,profile]
))/(
sumOver(
count(cases),
[stage,profile]
))
Now, I want to create a visual for the newly derived attribute indicating the vale per stage and per category. Is it possible to create a visual for such table calculations?
Thanks in advance.