ratio

M

Matt

Its there a way i can do ratio. I have cell a1 with 163 and 463000 in cell A2
and I would like the ratio in cell A3. Is there a way to do this? Thanks
 
J

JoeU2004

Matt said:
Its there a way i can do ratio. I have cell a1 with 163 and 463000 in cell
A2
and I would like the ratio in cell A3. Is there a way to do this? Thanks

What would you like the ratio to look like?

For example, in its simplest form, perhaps:

=A2 & ":" & A1

might yield 463000:163. More reliably (in case A1 or A2 has decimal
fractions):

=text(A2,"0:") & text(A1,"0")

But if you want the ratio to always be ":1", perhaps:

=text(A2/A1,"0.0:") & ":1"

However, note that none of those forms is a numeric. If you would like to
be able to treat the ratio as a number, and you always want ":1", try:

=A2/A1

with the custom format 0.0:"1".
 
M

Matt

What I have is we processed 463000 pieces and we had 163 errors so i need
cell A3 to show the ratio like 1/5000

Thanks
 

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