Forum Discussion
RatanaPOUY
6 years agoFrequent Visitor
Sum distinct base on column
hi, i have a detail table as follow: Table name: Daily Transaction then create a new table to distinct delivery number Delivery Order = DISTINCT('Daily Transaction'[Delivery]) ...
- 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.
v-xicai
6 years agoCommunity Support
Hi RatanaPOUY ,
Does that make sense? If so, kindly mark the proper reply as a solution to help others having the similar issue and close the case. If not, let me know and I'll try to help you further.
Best regards
Amy