Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I used the ffollowing to get the conversion ratio format I wanted
CONCATENATE(1,":",A1/B1) Now I am trying to figure out if there is a way to show the results in a whole number ie 1:32 instead of 1:32.6666666. Is there a way to do that? |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Try this:
=CONCATENATE(1,":",ROUND(A1/B1,0)) or slightly shorter: ="1:"&ROUND(A1/B1,0) Hope this helps. Pete wrote: I used the ffollowing to get the conversion ratio format I wanted CONCATENATE(1,":",A1/B1) Now I am trying to figure out if there is a way to show the results in a whole number ie 1:32 instead of 1:32.6666666. Is there a way to do that? |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Hello, Pete_UK!
You wrote on 27 Sep 2006 16:42:59 -0700: PU =CONCATENATE(1,":",ROUND(A1/B1,0)) PU or slightly shorter: PU ="1:"&ROUND(A1/B1,0) PU Hope this helps. PU Pete PU wrote: ?? I used the ffollowing to get the conversion ratio format I ?? wanted CONCATENATE(1,":",A1/B1) ?? ?? Now I am trying to figure out if there is a way to show ?? the results in a whole number ie 1:32 instead of ?? 1:32.6666666. ?? ?? Is there a way to do that? To tell the truth, I'm not quite sure what you want but if you have a decimal number, you could investigate formatting to a fraction. Format cells Fraction James Silverton Potomac, Maryland E-mail, with obvious alterations: not.jim.silverton.at.comcast.not |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Hi,
If the OP only intends to show this then your fractional format seems to be easiest solution. Another approach if he wants to use nominator and denominator later on: Insert my UDF NRN() from http://www.sulprobil.com/html/neares...al_number.html Select cells A1 and B1 together. Enter =NRN(PI(),999) as array formula (with CTRL + SHIFT + ENTER). Regards, Bernd |
#6
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
=CONCATENATE(1,":",ROUNDDOWN(A1/B1,0))
-- Gary's Student " wrote: I used the ffollowing to get the conversion ratio format I wanted CONCATENATE(1,":",A1/B1) Now I am trying to figure out if there is a way to show the results in a whole number ie 1:32 instead of 1:32.6666666. Is there a way to do that? |
#7
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
My reply hasn't appeared yet (10 mins ago), but here's a shorter
alternative: ="1:"&INT(A1/B1) You could use ROUNDDOWN instead of INT and instead of ROUND suggested in my earlier reply. Hope this helps. Pete wrote: I used the ffollowing to get the conversion ratio format I wanted CONCATENATE(1,":",A1/B1) Now I am trying to figure out if there is a way to show the results in a whole number ie 1:32 instead of 1:32.6666666. Is there a way to do that? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
ascii conversion | Excel Discussion (Misc queries) | |||
Calculation of Ratio | Excel Discussion (Misc queries) | |||
Divide x/y should give Ratio x:y,How to express ratio in excel | Excel Worksheet Functions | |||
How do I calculate and display ratio ( format 3.5:2) | Excel Worksheet Functions | |||
Curency Conversion Dilemma | Excel Worksheet Functions |