Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
I have created a % measure as follows :
Solved! Go to Solution.
Hey @lennox25 ,
if you want to use the format as "percentage" option, do not multiply by 100. If you want to show the result as poisitive consider using the ABS function like so:
% of Yellow = ABS(divide([No of Yellow],[Count of Category])-1)
Hopefully, this provides what you are looking for.
Regards,
Tom
Hey @lennox25 ,
if you want to use the format as "percentage" option, do not multiply by 100. If you want to show the result as poisitive consider using the ABS function like so:
% of Yellow = ABS(divide([No of Yellow],[Count of Category])-1)
Hopefully, this provides what you are looking for.
Regards,
Tom
Kudos to you 🙂 Thank you so much!!