Forum Discussion
thiamhuat2026
Helper III
4 months agoDisplay Chart with Normalized Values
I have this Count of Case ID by Category. But I want to display its normalized values which is equal to the (Sum of CaseID)/`EDU_with_Carpark'*100. How can I get the normalized values?
- 4 months ago
Can you try this
Normalized Value (%) =
DIVIDE(COUNT('Table'[Case ID]), SELECTEDVALUE('Table'[EDU_with_Carpark])) * 100
thiamhuat2026
Helper III
4 months agothanks for the prompt reply. I actually do not need to sum the Total EDU, but just the Total Cases divide by the [EDU_with_Carpark]. How should the Normalized Value (%) be modified?
krishnakanth240
Super User
4 months agoCan you try this
Normalized Value (%) =
DIVIDE(COUNT('Table'[Case ID]), SELECTEDVALUE('Table'[EDU_with_Carpark])) * 100
- Vinodh2474 months ago
Super User
Try this, made minor changes to suit:
Normalized Value (%) =
DIVIDE(COUNT('Table'[Case ID]), MAX('Table'[EDU_with_Carpark]), 0) * 100