matching

V

vip7346

HI:
I need to match 2 sheets by the check amount .... can I use VLOOKUP:
sheet 1: check #, check amount
sheet 2: check amount, name, ....
Thank
 
F

Frank Kabel

Hi
if your amount is unique you could use VLOOKUP or
IDEX/MATCH. e.g. if you want to 'copy' the check# to sheet
two try the following formula on sheet2
=INDEX('sheet1'!$A$1:$A$100,MATCH(A1,'sheet1'!
$B$1:$B$100,0))
 
Top