conversion ratio

  • Thread starter Thread starter iceicebaby
  • Start date Start date
I

iceicebaby

Im trying to take to cells and output it like this to another cell.

say if cell (A) has the number 100 and cell (B) has the number 5 I want
to divide a into b and have it output a conversion ratio...
Like below....HELP
I can get the number 20 but don't know how to add the 1: in front of
it.
1:20
 
One way:

In your cell: =A1/B1

then Format/Cells/Number/Custom 1\:0
 
-----Original Message-----
Im trying to take to cells and output it like this to another cell.

say if cell (A) has the number 100 and cell (B) has the number 5 I want
to divide a into b and have it output a conversion ratio...
Like below....HELP
I can get the number 20 but don't know how to add the 1: in front of
it.
1:20
use the CONCATENATE function
e.g. =CONCATENATE(1,":",A1/B1) or =CONCATENATE("1:",A1/B1)
 

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

Similar Threads


Back
Top