Parsing Parentheses

S

Saxman

I need to get rid of the parentheses below.

Data is in cells A1:A8

1.39(87.0)
16.5(5.0)
7.4(2.0)
8.2(12.0)
25.0(12.0)
40.0(2.0)
44.0(2.0)
48.0(2.0)

I want the data to end up like this:-
1.39
16.5 etc.
 
L

lhkittle

I need to get rid of the parentheses below.



Data is in cells A1:A8



1.39(87.0)

16.5(5.0)

7.4(2.0)

8.2(12.0)

25.0(12.0)

40.0(2.0)

44.0(2.0)

48.0(2.0)



I want the data to end up like this:-

1.39

16.5 etc.

Try:

=--LEFT(A1,FIND("(",A1)-1)

Howard
 

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