I have the below beast mode.
(CASE when `vessel`like('%RB%') then 'exclude'
when `vessel`like('%ROLL%') then 'exclude'
when `vessel`like('%ADV%') then 'exclude'
when `vessel`like('%REQ%') then 'exclude'
when `vessel`='' then 'exclude'
else 'include' end)
It is working except it is not excluding blank cells. I thought using: when `vessel`='' then 'exclude' it would exclude the blank cells. When use it to filter include it includes the blank cells. How do I get it to exclude them?