Why does my beast mode not work and returns me error "a column in the calculation does not exist'

art_in_sky
art_in_sky Contributor

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.

Tagged:

Answers

  • @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.

  • art_in_sky
    art_in_sky Contributor

    @MichelleH Thank you, I was able to resolve it the same way yesterday. Appreciate it!!