Forum Discussion
curiouspbix0
5 years agoHelper IV
Dax Aggregation Issue
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 s...
- Anonymous5 years ago
Hi curiouspbix0 ,
You can create a measure as below:
Actual = CALCULATE ( SUM ( 'TableVehicle'[Vehicle Count] ), FILTER ( 'TableVehicle', 'TableVehicle'[Status] IN { "Running", "Active" } ) )Best Regards
Anonymous
5 years agoNot applicable
Hi curiouspbix0 ,
You can create a measure as below:
Actual =
CALCULATE (
SUM ( 'TableVehicle'[Vehicle Count] ),
FILTER ( 'TableVehicle', 'TableVehicle'[Status] IN { "Running", "Active" } )
)
Best Regards