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 Team,
I have done below measure_1 based on multiple if condition, now I want the overall sum of measure_1.
Thanks,
Udt_KV
Solved! Go to Solution.
@Anonymous , measure like
Assume product 1 and product 2 are measures then
a new measure = if([Product 1] > 25 || [product 2] >13,1,0)
then to add
sumx( values(Table[Market]), [New measure])
@Anonymous , measure like
Assume product 1 and product 2 are measures then
a new measure = if([Product 1] > 25 || [product 2] >13,1,0)
then to add
sumx( values(Table[Market]), [New measure])