Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
Hello Daxers,
Running into an aggregation here, first table shows raw data, second table is the dax measure which computes correctly when Status column is not used in the table.
Actual is skewed when Status is added to the table, where did this go wrong ?
Raw Data
| Vehicle | Status | Vehicle Count |
| Bikes | Running | 10 |
| Bikes | Active | 20 |
| Bikes | OOO | 8 |
| Cars | Running | 10 |
| Cars | Active | 23 |
| Cars | OOO | 11 |
| Boats | Running | 100 |
| Boats | Active | 30 |
| Boats | OOO | 9 |
| Other | Running | 2 |
Actual = COUNTROWS(DISTINCT(TableVehicle[VehicleID]))
,FILTER(ALL(TableVehicle[Status])
,TableVehicle[VehicleStatus]="Running"
|| TableVehicle[VehicleStatus]="Active")
)
Raw Data with DAX
| Vehicle | Actual |
| Bikes | 30 |
| Cars | 33 |
| Boats | 130 |
| Other | 2 |
Actual Result Table - Incorrect
| Vehicle | Status | Actual |
| Bikes | Running | 30 |
| Bikes | Active | 30 |
| Bikes | OOO | 30 |
| Cars | Running | 33 |
| Cars | Active | 33 |
| Cars | OOO | 33 |
| Boats | Running | 130 |
| Boats | Active | 130 |
| Boats | OOO | 130 |
| Other | Running | 2 |
What DAX for field Status would result in the below table.
Expected Result Table - Correct
| Vehicle | Status | Actual |
| Bikes | Running | 10 |
| Bikes | Active | 20 |
| Cars | Running | 10 |
| Cars | Active | 23 |
| Boats | Running | 100 |
| Boats | Active | 30 |
| Other | Running | 2 |
Solved! Go to Solution.
Hi @curiouspbix0 ,
You can create a measure as below:
Actual =
CALCULATE (
SUM ( 'TableVehicle'[Vehicle Count] ),
FILTER ( 'TableVehicle', 'TableVehicle'[Status] IN { "Running", "Active" } )
)
Best Regards
Hi @curiouspbix0 ,
You can create a measure as below:
Actual =
CALCULATE (
SUM ( 'TableVehicle'[Vehicle Count] ),
FILTER ( 'TableVehicle', 'TableVehicle'[Status] IN { "Running", "Active" } )
)
Best Regards
In modeling click Net Table (write a dax expression to create new table) and write summarize DAX as per blow screenshot,
@curiouspbix0 , remove all and try
Actual = COUNTROWS(DISTINCT(TableVehicle[VehicleID]))
,FILTER((TableVehicle)
,TableVehicle[VehicleStatus] in{"Running","Active"})
)
or
with allselected
Actual = COUNTROWS(DISTINCT(TableVehicle[VehicleID]))
,FILTER(allselected(TableVehicle)
,TableVehicle[VehicleStatus] in{"Running","Active"})
)
ALLSELECTED did not work and cannot remove ALL together on Filter condition.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 62 | |
| 55 | |
| 39 | |
| 16 | |
| 15 |
| User | Count |
|---|---|
| 93 | |
| 85 | |
| 33 | |
| 31 | |
| 25 |