Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
In sheet: A,
Assuming lookup cust id data in col A are consistent with those in sheet B's col A Put in B2, format B2 as currency, copy down: =IF(ISNA(MATCH(A2,B!A:A,0)),"",INDEX(B!C:C,MATCH(A 2,B!A:A,0))) If the lookup cust id data in col A might be/contain text numbers while those in sheet B's col A are real numbers, then try instead in B2: =IF(ISNA(MATCH(A2+0,B!A:A,0)),"",INDEX(B!C:C,MATCH (A2+0,B!A:A,0))) The A2+0 bit is one way to convert A2 to real number for correct matching If the lookup cust id data in col A are real numbers while those in sheet B's col A are text numbers, then try in like this in B2: =IF(ISNA(MATCH(A2&"",B!A:A,0)),"",INDEX(B!C:C,MATC H(A2&"",B!A:A,0))) The A2&"" bit will convert A2 to text for correct matching -- Max Singapore http://savefile.com/projects/236895 xdemechanik --- |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How to Identify Values in Common Between 2 cells | Excel Discussion (Misc queries) | |||
Common Text Entries | Excel Worksheet Functions | |||
How do I compare data from 2 worksheets to find duplicate entries | Excel Discussion (Misc queries) | |||
Table to pick out most common entries and count occurences of each | Excel Worksheet Functions | |||
common entries between 2 columns | Excel Worksheet Functions |