Jul 14, 2014 #1 hamburg18w Technical User Joined Dec 27, 2005 Messages 32 Location US Can you help me build the following formula: if f6:j6 = Either: "Of" or "Hm" or "Grp" or "Ph" = Result: Yes
Can you help me build the following formula: if f6:j6 = Either: "Of" or "Hm" or "Grp" or "Ph" = Result: Yes
Jul 14, 2014 #2 S SkipVought Programmer Joined Dec 4, 2001 Messages 47,492 Location US Hi, Use the COUNTIFS() function. If the function returns a value greater than 0, you meet your requirement. Skip, Just traded in my OLD subtlety... for a NUance! Upvote 0 Downvote
Hi, Use the COUNTIFS() function. If the function returns a value greater than 0, you meet your requirement. Skip, Just traded in my OLD subtlety... for a NUance!
Jul 15, 2014 1 #3 zelgar Technical User Joined Apr 28, 2011 Messages 436 Location US Try =IF(SUMPRODUCT(COUNTIFS(F6:J6,{"Of","Hm","Grp","Ph"})),"Yes","") Upvote 0 Downvote
Jul 15, 2014 Thread starter #4 hamburg18w Technical User Joined Dec 27, 2005 Messages 32 Location US Thank you for the help. It worked. I really appreciate the quick response. Juan Upvote 0 Downvote