Forum Discussion
Mariollo
1 year agoHelper I
Toggle 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
1 year agoSuper User
Hi Mariollo
You can remove the filter using the Calculate function
Absolute % =
COUNT ( Table[product_id] )
/
Calculate( COUNT ( Table[product_id] ), AllSelected(Table[range_column]))
- Mariollo1 year agoHelper I
Thank you, this is also working 🙂