I would like to be able to have point features show as 50 percent transparent if a field = 'no' and be displayed with no transparency if the same field = 'yes'. I haven't been able to get this to work using a custom expression using the 'When' function and assigning the value of 50 to all features when the field value = 'no'. Is there another way to accomplish this?
Current expression:
var reviewed = $feature.Reviewed;
When(reviewed == 'Yes', '0', '50')
Thank you,
Dan