Supplies are limited. Contact info@espc.tech right away to save your spot before the conference sells out.
Get your discountScore big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount
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!