I have these calculated measures which I use within a tool tip as table calculations
[alert_count_by_action] = total([distinct_alerts]) compute using day
[alert_count_all] = total(distinct alerts]) compute using table across
When I mouse over an action name colored widget type I can see that the [alert_count_by_action]
and [alert_count_all]
are producing the correct values. What I would like to do is to compute a percent by dividing [alert_count_by_action] / [alert_count_all]
which I will call [alerts_by_action_percent_overall]
. This is not working at all despite trying every combination available on the table calculation options within the Marks card.
What am I doing wrong?