Forum Discussion
AVAughan
1 year agoNew Member
Percentage Calculation
Hi there, Sorry for a very basic query but I havent been able to find a solution online. I have two columns in my table (Booked and Total) and want to find the utilisation for booking. The colum...
- 1 year ago
Make Sure you are creating a measure
Percentage = SUM('Table'[Booked])/SUM('Table'[Total])
And format it as %
arvindsingh802
1 year agoCommunity Champion
Make Sure you are creating a measure
Percentage = SUM('Table'[Booked])/SUM('Table'[Total])
And format it as %
- v-aatheeque1 year agoCommunity Support
Hi AVAughan ,
As suggested by arvindsingh802 , I wanted to check if your issue has been resolved.
If their response addressed your query, kindly mark it as "Accept Answer" and click "Yes" if you found it helpful.
Should you have any further questions, feel free to reach out.
Thank you for being a valued member of the Microsoft Fabric Community Forum!
- AVAughan1 year agoNew Member
Thank you very much! Thats exactly where I was going wrong.