Forum Discussion
Anonymous
5 years agoNot applicable
DAX Measure Help
Hi All, I have below dataset and i want to plot values present in column: Capacity in the visual. RailHead Carrier Capacity Inventory Inv_LinkDate RH1 C1 100 30 ...
- 5 years ago
Hi Anonymous ,
Not sure about all the prerequisites, but you can try the measure below:
capacity_amt = SUMX(DISTINCT(T[RailHead]), CALCULATE(MAX(T[Capacity])))If this post helps, then please consider Accept it as the solution ✔️to help the other members find it more quickly.
ERD
Community Champion
5 years agoHi Anonymous ,
Not sure about all the prerequisites, but you can try the measure below:
capacity_amt = SUMX(DISTINCT(T[RailHead]), CALCULATE(MAX(T[Capacity])))If this post helps, then please consider Accept it as the solution ✔️to help the other members find it more quickly.