Forum Discussion
letter count
Hi JDU ,
try this to get count:
count = CALCULATE(COUNTA('Table'[Column 1]),ALLEXCEPT('Table','Table'[Column 1]))and to get %:
% = 'Table'[count] / COUNTROWS('Table')You can also combine two formulas into 1.
Regards,
Matej
First of all thank you very much for your reply MatejZukovic
The first equation worked very well, the formula responds well, but the second equation does not, it brings me as a result 100% for each of the characters to count.
Where do you think the mistake might be?
Thanks again!
MatejZukovic wrote:Hi JDU ,
try this to get count:
count = CALCULATE(COUNTA('Table'[Column 1]),ALLEXCEPT('Table','Table'[Column 1]))and to get %:
% = 'Table'[count] / COUNTROWS('Table')You can also combine two formulas into 1.
Regards,
Matej
MatejZukovic wrote:Hi JDU ,
try this to get count:
count = CALCULATE(COUNTA('Table'[Column 1]),ALLEXCEPT('Table','Table'[Column 1]))and to get %:
% = 'Table'[count] / COUNTROWS('Table')You can also combine two formulas into 1.
Regards,
Matej
MatejZukovic wrote:Hi JDU ,
try this to get count:
count = CALCULATE(COUNTA('Table'[Column 1]),ALLEXCEPT('Table','Table'[Column 1]))and to get %:
% = 'Table'[count] / COUNTROWS('Table')You can also combine two formulas into 1.
Regards,
Matej
- MatejZukovic6 years agoResolver I
Hi JDU ,
previous approach would work when you create column in your backend table.
If you'd like to do the calculation as a measure, try this:
% = [count]/CALCULATE(COUNTA('Table'[Column 1]), ALL('Table'[Column 1]))