Used this formula
(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)
thinking using:
when 'vessel'='' then 'exclude'
would work to exclude the blank cells as well as the others. it did not.
Was given suggestion to use:
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 IFNULL(`Vessel`,'Y')= 'Y' then 'Exclude'
when `vessel`='' then 'exclude'
else 'Include'
end
This also did not work to exclude the blank cells. If I use
IFNULL(`vessel`,'exclude')
by itself and it works, but I can't get it to combine with the other logic.
Any help would be greatly appriciated.