Forum Discussion
abukapsoun
8 years agoPost Patron
Count measure
Hi Dears, I have a simple measure but struggling to find the right forumla. I have the following column X X X Y Z I want to reach Total = (SUM of X + SUM of Y) thanks in advance...
- 8 years ago
calculate(countrows(yourtablename),[yourcolumnname]="X"||[yourcolumnname]="Y")
jthomson
8 years agoSolution Sage
calculate(countrows(yourtablename),[yourcolumnname]="X"||[yourcolumnname]="Y")
abukapsoun
8 years agoPost Patron
It worked. Thank you.