Forum Discussion
KBVelasco
6 years agoFrequent Visitor
Display remaining percentage
What is the easiest way to display the remaining percentage of the following measure (ie. show 8% instead of 92%)? Everything I've tried either returns the wrong value or applies a value to rows tha...
parry2k
Super User
6 years agoKBVelasco not sure if I understood it correctly, add another measure for remaining %
% Remaining = 1 - [Budget Used]
I would ❤ Kudos if my solution helped. 👉 If you can spend time posting the question, you can also make efforts to give Kudos whoever helped to solve your problem. It is a token of appreciation!
⚡Visit us at https://perytus.com, your one-stop shop for Power BI related projects/training/consultancy.⚡
- KBVelasco6 years agoFrequent Visitor
That was one of the steps I was missing! Your first recommendation worked once I changed the formatting. Now I just need to filter out the "100%" on the rows without any data.
- KBVelasco6 years agoFrequent Visitor
This is what I ended up with. Everything looks like it's working as it should. Thank you!
Budget Remaining = IF([User Budget]>0, 1 - [Budget Used %], [Blank])