Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Looking for formula that will confirm (True/False) that the (single
character) entry in col "C" is a valid entry for data in col "A". I have setup a table that shows the 9 codes in col "A" (a, b, c, d, e, f, g, p, and q) and the codes that correspond to them. Any assistance appreciated Thanks in advance. |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
=C1=VLOOKUP(A1,lookup_table,2,False)
-- __________________________________ HTH Bob "VAPCMD" wrote in message ... Looking for formula that will confirm (True/False) that the (single character) entry in col "C" is a valid entry for data in col "A". I have setup a table that shows the 9 codes in col "A" (a, b, c, d, e, f, g, p, and q) and the codes that correspond to them. Any assistance appreciated Thanks in advance. |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Hi,
You may need to get a little fancier because if the A1 entry is not listed in the table the previous formula will return #N/A. In this case that problem also displays FALSE. =IF(ISNA(VLOOKUP(A1,$G$1:$H$2,2,)),FALSE,VLOOKUP(A 1,$G$1:$H$2,2,)=C1) -- If this helps, please click the Yes button Cheers, Shane Devenshire "VAPCMD" wrote: Looking for formula that will confirm (True/False) that the (single character) entry in col "C" is a valid entry for data in col "A". I have setup a table that shows the 9 codes in col "A" (a, b, c, d, e, f, g, p, and q) and the codes that correspond to them. Any assistance appreciated Thanks in advance. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
=IF(VLOOKUP(C11,Group,2,FALSE)=D11,"True","Not Valid") and =IF(D1 | Excel Worksheet Functions | |||
Excel - Golf - how to display "-2" as "2 Under" or "4"as "+4" or "4 Over" in a calculation cell | Excel Discussion (Misc queries) | |||
change "true" and "false" to "availble" and "out of stock" | Excel Worksheet Functions | |||
HELP on "left","right","find","len","substitute" functions | Excel Discussion (Misc queries) | |||
Count occurences of "1"/"0" (or"TRUE"/"FALSE") in a row w. conditions in the next | New Users to Excel |