What you need is the Match function:
=MATCH(A1,Sheet1!A:A,FALSE)
And if you want to ignore empty cells:
=if(A1="","",MATCH(A1,Sheet1!A:A,FALSE))
And for ignoring errors:
=IF(A1="","",IF(ISERROR(MATCH(A1,Sheet1!A:A,FALSE)),"not
found",MATCH(A1,Sheet1!A:A,FALSE)))
hth
Carlo
EricBB - 27 Nov 2007 08:00 GMT
hi carlo,
this is really what i want. thank you so much
EricBB
> What you need is the Match function:
>
[quoted text clipped - 12 lines]
>
> Carlo
carlo - 27 Nov 2007 08:14 GMT
> hi carlo,
> this is really what i want. thank you so much
[quoted text clipped - 18 lines]
>
> - Show quoted text -
you're welcome!