times part of cell content

M

Mike Mike

I got a column like this:
11/40
35/10
101/100
250/40

I need to times the number before the / with 2 in each row so I get
22/40
70/10
202/100
500/40

Anyone know how I can do this?

Thanks
Mike
 
B

Beege

Mike Mike said:
I got a column like this:
11/40
35/10
101/100
250/40

I need to times the number before the / with 2 in each row so I get
22/40
70/10
202/100
500/40

Anyone know how I can do this?

Thanks
Mike

Mike,

=2*LEFT(A2,SEARCH("/",A2)-1)

SEARCH or FIND, FIND is case sensitive. In this case, doesn't matter. Both
return the position of the character.

HTH

Beege
 

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