formula help

T

T. Valko

Enter this formula in C8:

=IF(OR(B8={"Adelaide","Mackay","Katherine","Darwin"}),3,"")
 
K

Kevin B

My system appears to have hiccupped while sending the reply. The function
that I suggested that you use in cell C8 is:

=IF(OR(B8="Adelaide",B8="Mackay",B8="Katherine",B8="Darwin"),3,"")
 
J

JE McGimpsey

One way:

=IF(SUM(COUNTIF(B8,{"Adelaide","mackay","katherine","darwin"})),3,"")
 
Top