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!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hi there!
I have two measures, [Promo Vol] and [Total Vol] - you can see the results in this table
I just want to create another measure that will sum up the [Total Vol] but ONLY in cases where [Promo Vol] > 0
So in this case the output value I'm looking for is £334,948 (i.e. sum of everything in [Total Vol] except the last two rows because the Promo Vol is 0
Does anyone have any suggestions?
Thanks
Alex
Solved! Go to Solution.
@Anonymous , Try a measure like
sumx(values(Table[Date]), if([Promo Vol] > 0, [Total Vol],blank()))
Legend, thank you! 😘