Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register now.
I have data for 2024 and 2025 in the "Mars Year" column and need to sum the "Actual Tonnage" as a measure to sum total 2024 and total 2025. I've tried a few calculations but it's not bringing back what I need. Any suggestions would be helpful.
Solved! Go to Solution.
Try this measure:
Actual Tonnage 2024 and 2025 =
CALCULATE (
SUM ( MyTable[Actual Tonnage] ),
MyTable[Mars Year] IN { 2024, 2025 }
)
Proud to be a Super User!
Try this measure:
Actual Tonnage 2024 and 2025 =
CALCULATE (
SUM ( MyTable[Actual Tonnage] ),
MyTable[Mars Year] IN { 2024, 2025 }
)
Proud to be a Super User!