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'm trying to update my measure so the "university connection" values only show red for greater than 2, "street team" greater than 8, and "social media" greater than 12, etc.
Solved! Go to Solution.
@Anonymous , Try A meausre like
Switch( True() ,
max(Table[Type)= "university connection" && [Primary Zeros]> 2, "Red",
max(Table[Type)= "street team" && [Primary Zeros]> 8, "Red",
max(Table[Type)= "Social Media" && [Primary Zeros]> 12, "Red",
"White"
)
@Anonymous , Try A meausre like
Switch( True() ,
max(Table[Type)= "university connection" && [Primary Zeros]> 2, "Red",
max(Table[Type)= "street team" && [Primary Zeros]> 8, "Red",
max(Table[Type)= "Social Media" && [Primary Zeros]> 12, "Red",
"White"
)
Ahhh! Thank you so very much!