How to do this in excel?

You can add an IF function to cells in column G to do this:

=IF(OR(C1="1",D1="2",E1="3"),"1","0")

This currently only caters for 3 columns, so add additional arguments to the OR function, if you want to incorporate additional columns. All you then need to do is amend the “1”, “2” and “3” etc for your codes and amend the ranges for your dataset.

Leave a Comment