Please help me to find out the solution.
My file is attached. I am trying to analyze customer app data.
Where total registered customers are 5 and they are 3 Male and 2 Female.
They are frequent users. I want to figure out how many Male and Female members get registered during certain months.
The First Matix table gives me the correct number but If the second one counts whole entry data.
Can you help me to fix this?
Thanks in advance
Solved! Go to Solution.
Hello @jnn4282 ,
This should give you expected result-
Male = CALCULATE(DISTINCTCOUNT(Sheet1[ID]),Sheet1[Gender]="M")
Please mark it as answer if it solves your issue. Kudos are also appreciated.
Thank you, Shishir, for your support. Big Kudos to you.
Hello @jnn4282 ,
This should give you expected result-
Male = CALCULATE(DISTINCTCOUNT(Sheet1[ID]),Sheet1[Gender]="M")
Please mark it as answer if it solves your issue. Kudos are also appreciated.