the Last occurance

P

peyman

Hi everybody,

I need to now how I can get the last Row number of last occurance of an item
in a list, for example:

row item
1 A
2 B
3 D
4 A

I want a formula to return me row number 4 after looking up A.
Any hints,
thanks.
 
R

Ron Rosenfeld

Hi everybody,

I need to now how I can get the last Row number of last occurance of an item
in a list, for example:

row item
1 A
2 B
3 D
4 A

I want a formula to return me row number 4 after looking up A.
Any hints,
thanks.


=LOOKUP(2,1/($A$1:$A$65535="A"),ROW($A$1:$A$65535))

--ron
 
T

T. Valko

Try this array formula** :

=MAX(IF(A1:A100="A",ROW(A1:A100)))

** array formulas need to be entered using the key combination of
CTRL,SHIFT,ENTER (not just ENTER). Hold down both the CTRL key and the SHIFT
key then hit ENTER.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top