Don't miss your chance to take the Fabric Data Engineer (DP-700) exam on us!
Learn moreWe've captured the moments from FabCon & SQLCon that everyone is talking about, and we are bringing them to the community, live and on-demand. Starts on April 14th. Register now
Hi,
I have table with columns "status","ID"
I need to count the rows that have "Active" status but with distinct ID and then put it into a new measure.
How can i filter my table on "Active" status and then remove the non distinct rows + sum the result?
Thanks!
Solved! Go to Solution.
Please use the DAX below.
Measure 2 = CALCULATE(DISTINCTCOUNT(Table1[ID]),FILTER(Table1,Table1[Status]="Active"))
Regards,
Charlie Liao
Hi,
Try this
=CALCULATE(DISTINCTCOUNT(Data[ID]),Data[Status]="Active")
Hope this helps.
Can you please attach the table that you are using as your dataset along with the expected results?
| ID | Status | ||||
| 1 | Active | ||||
| 1 | Active | ||||
| 1 | Not Active | ||||
| 2 | Active | ||||
| 3 | Not Active | ||||
| 2 | Active |
i want to add new measure with value that based on the table above will be 2, because after i filter the Active and remove distinct i will have only 2 rows.
Hi,
Try this
=CALCULATE(DISTINCTCOUNT(Data[ID]),Data[Status]="Active")
Hope this helps.
Try:
Measure = CALCULATE(COUNTROWS(DISTINCT(Table1[ID])),FILTER(Table1,Table1[Status]="Active"))
I cant DISTINCT first because i might left with ID that have "Not Active" status although there is ID with Active status
Please use the DAX below.
Measure 2 = CALCULATE(DISTINCTCOUNT(Table1[ID]),FILTER(Table1,Table1[Status]="Active"))
Regards,
Charlie Liao
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 51 | |
| 37 | |
| 35 | |
| 19 | |
| 17 |
| User | Count |
|---|---|
| 70 | |
| 64 | |
| 39 | |
| 33 | |
| 23 |