lookup left

M

Mottyb

I would like to use vlookup to look for all the characters at the right of a
column until the :)) sign, (see sample below) I can’t use the num_chars
because it’s not always the same amount of characters after the colon sign
:))

FISH IN BAGS:12a
FISH IN BAGS:p24
FISH IN BOX:p12
FISH IN BAGS:pN24
 
S

Sandy Mann

Do yoiu mean:

=RIGHT(A1,LEN(A1)-FIND(":",A1))

to give:

12a
P24
P12
PN24

when dragged down?

--
HTH

Sandy
In Perth, the ancient capital of Scotland
and the crowning place of kings

[email protected]
Replace @mailinator.com with @tiscali.co.uk
 
Top