Forum Discussion
TravianMcNavian
4 years agoRegular Visitor
Adding A Percentage Column To A Matrix
Greetings, I hope you are having a blessed day! I am attempting to add a percentage summary to the end of a matrix in my PowerBI report. My current Matrix looks like this: Group ...
- 4 years ago
Hi,
If you want to create a column, that is calculated the percentage value of passing based on each row, you could use below code ("Column 4" is the column without any title in your message) :
Pass percent = divide( [P], ([P] + [F] + [Column4] ))
MahyarTF
4 years agoMemorable Member
Hi,
If you want to create a column, that is calculated the percentage value of passing based on each row, you could use below code ("Column 4" is the column without any title in your message) :
Pass percent = divide( [P], ([P] + [F] + [Column4] ))