March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch 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()))
@Anonymous , Try a measure like
sumx(values(Table[Date]), if([Promo Vol] > 0, [Total Vol],blank()))
Legend, thank you! 😘
User | Count |
---|---|
117 | |
77 | |
58 | |
52 | |
46 |
User | Count |
---|---|
171 | |
117 | |
63 | |
57 | |
51 |