=NOT(ISERROR(FIND(1,E5)))
Will find if there is a 1 in cell E5. It gives true if there is and false
if there is not.
You have to use Find because the number may not always be in the same
position. Find returns an error if the string it is looking for is not in
the target string.
This will only work if there are 9 or fewer options for a particular group.
Otherwise, it would find 2 if 12 was ticked. There is a way around this but
the formula would be more complicated. You could make it
=NOT(ISERROR(FIND("|1|","|" & E5 & "|")))
I am sure you can adapt this to suit your application.