I think you could do it as:
where Choose([Forms]![fdlgCo_Status]![Status],'1','23','4') LIKE '*' & status & '*'
or
where InStr(Choose([Forms]![fdlgCo_Status]![Status],'1','23','4'),status) > 0
A bit of a bodge but maybe the only way other than
where status =...