CASE WHEN Current = 'True' AND group roles LIKE '%Housing%' THEN TRUE ELSE FALSE END I confirm that the above column names are correct and are working otherwise in beast mode.
Current
group roles
@art_in_sky Make sure to put single quotes around 'TRUE' and 'FALSE'. It's likely trying to find fields with those names, so putting them in quotes will make sure they are recognized as strings and not field names.
@MichelleH Thank you, I was able to resolve it the same way yesterday. Appreciate it!!