Supplies are limited. Contact info@espc.tech right away to save your spot before the conference sells out.
Get your discountScore big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount
Dear colleagues !
Please could you help me with DAX Mesure that can allow me to have number of each service
Solved! Go to Solution.
Dear @dharmendars007
Thank you for this proposition; but the Distinct Count should be based on the ID column insteand of service.
So, below is the solution:
Number of Mental Health =
Hello @dofrancis3 ,
Please try the below measures..
Number of Legal Assistance =
CALCULATE(
COUNT('Dataset'[Service]),
'Dataset'[Service] = "Legal assistance")
Number of Mental Health =
CALCULATE(
COUNT('Dataset'[Service]),
'Dataset'[Service] = "Mental health")
Number of Family =
CALCULATE(
COUNT('Dataset'[Service]),
'Dataset'[Service] = "Family")
If you find this helpful , please mark it as solution which will be helpful for others and Your Kudos/Likes 👍 are much appreciated!
Thank You
Dharmendar S
Dear @dharmendars007
Thank you for this proposition; but the Distinct Count should be based on the ID column insteand of service.
So, below is the solution:
Number of Mental Health =
User | Count |
---|---|
12 | |
11 | |
8 | |
6 | |
6 |
User | Count |
---|---|
25 | |
19 | |
14 | |
10 | |
7 |