Forum Discussion
Sum distinct base on column
- 6 years ago
Hi RatanaPOUY ,
You may create measure like DAX below.
Sum Volume= CALCULATE(SUM('Daily Transaction'[Volume]),FILTER(ALLSELECTED('Daily Transaction'), 'Daily Transaction'[Delivery] =MAX('Daily Transaction'[Delivery])))
Or you can just change the show aggregation of Volume to Sum.
Best Regards,
Amy
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi RatanaPOUY ,
You may create measure like DAX below.
Sum Volume= CALCULATE(SUM('Daily Transaction'[Volume]),FILTER(ALLSELECTED('Daily Transaction'), 'Daily Transaction'[Delivery] =MAX('Daily Transaction'[Delivery])))
Or you can just change the show aggregation of Volume to Sum.
Best Regards,
Amy
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.