Forum Discussion
Mariollo
Helper I
1 year agoToggle between absolute values and % - using field parameters
I have a table like below: I would like to use field parameters to toggle between absolute and % values to have second view like below: For first values I have simple D...
- 1 year ago
Hi Mariollo,
I'm attaching a pbix file with my solution.
SamWiseOwl
Super User
1 year agoHi Mariollo
You can remove the filter using the Calculate function
Absolute % =
COUNT ( Table[product_id] )
/
Calculate( COUNT ( Table[product_id] ), AllSelected(Table[range_column]))
Mariollo
Helper I
1 year agoThank you, this is also working 🙂