Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
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 | 01-Sep-2021 |
RH1 | C2 | 100 | 40 | 02-Sep-2021 |
RH2 | C3 | 200 | 40 | 01-Sep-2021 |
RH2 | C4 | 200 | 40 | 02_Sep-2021 |
Cpacity is associated with RailHead. Each RailHead can have multiple Carrier associated with It.
Now if i select RailHead: RH1 from Filter then Capacity for 01-Sep-2021 and 02-Sep-2021 will be: 100
Similarly if i select additional RailHead:RH2 from filter then Cpacity will be 300 (Total Sum of capacity for all selected RailHead) on 01-Sep-201 and 02-Sep-2021
Please help in creating DAX measure for above scenario.
Thanks in advance
Thanks
Solved! Go to Solution.
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.
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly. Appreciate your Kudos.
Check out my latest demo report in the data story gallery.
Stand with Ukraine!
Here are official ways you can support Ukraine financially (accounts with multiple currencies):
1) Support the Armed Forces of Ukraine: https://bank.gov.ua/ua/about/support-the-armed-forces
2) Come Back Alive foundation: https://www.comebackalive.in.ua/
Thank you!
Thanks! your logic worked, its returning correct result.
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.
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly. Appreciate your Kudos.
Check out my latest demo report in the data story gallery.
Stand with Ukraine!
Here are official ways you can support Ukraine financially (accounts with multiple currencies):
1) Support the Armed Forces of Ukraine: https://bank.gov.ua/ua/about/support-the-armed-forces
2) Come Back Alive foundation: https://www.comebackalive.in.ua/
Thank you!
Check out the July 2025 Power BI update to learn about new features.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
User | Count |
---|---|
26 | |
10 | |
10 | |
9 | |
6 |