Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]() Need help please!!!! I have 8 columns and 10 items to look up for within these columns. I need a function witch will give me a 1 if any of the the items are in the columns..I have this function to find one item, but when i try to put more items to be found i get no result.. ![]() thanks =IF(OR(S2="BGMFIELDNOTIF",U2="BGMFIELDNOTIF",W2="B GMFIELDNOTIF",Y2="BGMFIELDNOTIF",AA2="BGMFIELDNOTI F",AC2="BGMFIELDNOTIF",AE2="BGMFIELDNOTIF",AG2="BG MFIELDNOTIF"),1, " ") -- JRIVERA77 ------------------------------------------------------------------------ JRIVERA77's Profile: http://www.excelforum.com/member.php...o&userid=31325 View this thread: http://www.excelforum.com/showthread...hreadid=510111 |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Not sure I understand fully, have you tried V Lookup?
"JRIVERA77" wrote: Need help please!!!! I have 8 columns and 10 items to look up for within these columns. I need a function witch will give me a 1 if any of the the items are in the columns..I have this function to find one item, but when i try to put more items to be found i get no result.. ![]() thanks =IF(OR(S2="BGMFIELDNOTIF",U2="BGMFIELDNOTIF",W2="B GMFIELDNOTIF",Y2="BGMFIELDNOTIF",AA2="BGMFIELDNOTI F",AC2="BGMFIELDNOTIF",AE2="BGMFIELDNOTIF",AG2="BG MFIELDNOTIF"),1, " ") -- JRIVERA77 ------------------------------------------------------------------------ JRIVERA77's Profile: http://www.excelforum.com/member.php...o&userid=31325 View this thread: http://www.excelforum.com/showthread...hreadid=510111 |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]() See if this works for you: =IF(ISNUMBER(SEARCH("BGMFIELDNOTIF",S2&U2&W2&Y2&AA 2&AC2&AE2&AG2)),1," ") That will determine if BGMFIELDNOTIF exists anywhere in those cells. Note: it will also match if that string is embedded within a cell. Example: aaaBGMFIELDNOTIFbbb Otherwise, if you need cell content matches, maybe this with will suit your needs: =IF(SUMPRODUCT(((S2:AG2)="BGMFIELDNOTIF")*MOD(COLU MN(S2:AG2),2))0,1," ") Does that help? Regards, Ron -- Ron Coderre ------------------------------------------------------------------------ Ron Coderre's Profile: http://www.excelforum.com/member.php...o&userid=21419 View this thread: http://www.excelforum.com/showthread...hreadid=510111 |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Change a Column list into multiple rows & columns | Excel Worksheet Functions | |||
Positioning Numeric Values Resulting from 6 Column Array Formula | Excel Worksheet Functions | |||
search value in a table and sum another column | Excel Worksheet Functions | |||
match and count words | Excel Worksheet Functions | |||
Lookup Table Dilemma | Excel Worksheet Functions |