How do I select the last alphanumric word in an excel column with.

B

Biff

Try this:

=LOOKUP(REPT("z",255),A:A)

Will return the last TEXT entry in column A.

Biff
 
B

Bob Phillips

=LOOKUP(2,1/(A1:A200<>""),A1:A200)

will find number or text

--
HTH

Bob Phillips

(replace somewhere in email address with gmail if mailing direct)
 
Top