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.
I have 2 numeric measures that are used as columns in my report matrix visual. I need a third measure that will check both for 0, and if and only if both are 0, set to True.
Thanks!
Solved! Go to Solution.
@Anonymous ,
if([M1]=0 && [M2] = 0 , true(), false() )
Works perfectly - thank you sir!