Forum Discussion
Percentages
- 7 years ago
Instead of relying on quick measures, build the measure you want. You have:
Tickets = COUNTROWS(WHD_Tickets)
Build one to show % Grand Total:
%Grand Total =
VAR AllWhdTickets = CALCULATE([Tickets], ALL(Table[Status]))
Return
DIVIDE([Tickets], AllWhdTickets)
Please keep in mind that I do not know what your table is named or the column for your descriptions, you will need to put the correct data into the variable.
Dear calebmfoster
Thank you for your answer but I do not have a % to grand total measure, how do I do this?
- kcantor7 years agoCommunity Champion
Instead of relying on quick measures, build the measure you want. You have:
Tickets = COUNTROWS(WHD_Tickets)
Build one to show % Grand Total:
%Grand Total =
VAR AllWhdTickets = CALCULATE([Tickets], ALL(Table[Status]))
Return
DIVIDE([Tickets], AllWhdTickets)
Please keep in mind that I do not know what your table is named or the column for your descriptions, you will need to put the correct data into the variable.
- imy7 years agoHelper I
Many thanks! It worked
- Anonymous7 years agoNot applicable
No problem, be sure to select a comment as a solution so the thread gets closed.
- Anonymous7 years agoNot applicable
Remember the other reply I made and told you to drag your measure into values and hit the drop down menu? Do that but drag it to tool tip instead