Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers!
Enter the sweepstakes now!Prepping for a Fabric certification exam? Join us for a live prep session with exam experts to learn how to pass the exam. Register now.
Hi
I am having a text column as follow
Text
Apple
Carrot
Apple
Carrot
Beans
Kiwi
Beans
Kiwi
I need to create a separate card for each fruit. How to sum the total number of apple or carrot etc present in the column using dax measures?
I need to create separate DAX measures for each fruit.
Please advise
Solved! Go to Solution.
Apple = countx(filter(Table, Table[Fruit]="Apple"), Table[Fruit])
Hope, this is what you need
Hi @amitchandak Thanks for your quick reply. Can you please tell me how to create the measure using dax function?
Apple = countx(filter(Table, Table[Fruit]="Apple"), Table[Fruit])
Hope, this is what you need
what if I would count String in a column that contains a particular word
for example, a column contains the full name and I would calculate how many Jeff we have?
User | Count |
---|---|
84 | |
73 | |
73 | |
58 | |
51 |
User | Count |
---|---|
43 | |
41 | |
35 | |
34 | |
30 |