Need Help With A Very Simple Macro

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I download from a database that provides ratios in the following format "
0.95 :1" which is formatted as text. I tried to write a macro that would
delete the " :1" so I could convert the cell to a number and use it in
calculations. Every time I run the macro it changes the cell to the exact
number that was in the original cell I used when creating the macro. Does
anyone know what I am doing wrong?
 
I download from a database that provides ratios in the following
format "
0.95 :1" which is formatted as text. I tried to write a macro that
would delete the " :1" so I could convert the cell to a number and
use it in calculations. Every time I run the macro it changes the
cell to the exact number that was in the original cell I used when
creating the macro. Does anyone know what I am doing wrong?

Instead of using a macro, you can select the range to convert, then menu
Edit, substitute and here in the cell Find put :1 and leave blank the cell
Substitute, then press Ok.


--
Hoping to be helpful...

Regards

Franz
 
Assuming your data is in column A, here's a formula you can put in B1 and
copy down to return what you want as a number..........

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

Vaya con Dios,
Chuck, CABGx3
 

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

Back
Top