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
Singaravelu_R
5 years agoResolver III
In modeling click Net Table (write a dax expression to create new table) and write summarize DAX as per blow screenshot,