Forum Discussion
Lyle
4 years agoFrequent Visitor
Divide a Count column by another Count column per month
Please help with a formula for a percentage per month. January would be 7 / 136 = 5.15%
Thanks in advance!
Lyle , Try measure like
Divide(Count(Table[LSE]) , Count(Table[Mode]))
or
Divide(distinctCount(Table[LSE]) , distinctCount(Table[Mode]))
mark it as % measure from measure tool
2 Replies
- amitchandak
Super User
Lyle , Try measure like
Divide(Count(Table[LSE]) , Count(Table[Mode]))
or
Divide(distinctCount(Table[LSE]) , distinctCount(Table[Mode]))
mark it as % measure from measure tool
- LyleFrequent Visitor
Thank you sir