Avatar of Ladkisson
Ladkisson
Flag for United States of America asked on

To separate text from value in excel

Hello!

I am pulling data from online and pasting it into excel. It is a text with a $$ amount. Is there a formula that will separate description from $$?

Example A1= CULTURE BLOOD (Base Charge)130.00

I need B1 = $130.00

Thanks!
Microsoft Excel

Avatar of undefined
Last Comment
Rodney Endriga

8/22/2022 - Mon
Missus Miss_Sellaneus

Do they all have a ")" immediately before the amount?

If so, you can use a formula such as this:

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

ASKER
it did not work...another example:

Comprehensive Profile350.00 ... I need $350 only or

BLOOD Type ABO20.00.... I need $20.00 only
ASKER CERTIFIED SOLUTION
Saurabh Singh Teotia

THIS SOLUTION ONLY AVAILABLE TO MEMBERS.
View this solution by signing up for a free trial.
Members can start a 7-Day free trial and enjoy unlimited access to the platform.
See Pricing Options
Start Free Trial
GET A PERSONALIZED SOLUTION
Ask your own question & get feedback from real experts
Find out why thousands trust the EE community with their toughest problems.
Missus Miss_Sellaneus

Sorry, my Excel is acting buggy for some reason and I can't properly test what I want to at the moment.
Experts Exchange is like having an extremely knowledgeable team sitting and waiting for your call. Couldn't do my job half as well as I do without it!
James Murphy
Ladkisson

ASKER
Truly the Best! Thank you!
Rodney Endriga

You can try to use this formula:

=RIGHT(A1,LEN(A1)-MIN(FIND({0;1;2;3;4;5;6;7;8;9},A1&{0;1;2;3;4;5;6;7;8;9}))+1)

Open in new window


It finds the first number value in the string.
This will insert the '$' in the result:

=DOLLAR(RIGHT(A1,LEN(A1)-MIN(FIND({0;1;2;3;4;5;6;7;8;9},A1&{0;1;2;3;4;5;6;7;8;9}))+1))

Open in new window