<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Formatting ratios</title>
	<atom:link href="http://www.dailydoseofexcel.com/archives/2004/04/29/formatting-ratios/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.dailydoseofexcel.com/archives/2004/04/29/formatting-ratios/</link>
	<description>Daily posts of Excel tips…and other stuff</description>
	<lastBuildDate>Wed, 08 Feb 2012 23:58:05 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: PJ</title>
		<link>http://www.dailydoseofexcel.com/archives/2004/04/29/formatting-ratios/#comment-67269</link>
		<dc:creator>PJ</dc:creator>
		<pubDate>Tue, 25 Oct 2011 14:29:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=507#comment-67269</guid>
		<description>&lt;p&gt;to approximate the above ratio to a whole number : 1 try this below&lt;/p&gt;
&lt;p&gt;=ROUND(B1/B2,0)&amp; &quot;: 1?     (put a space between &amp; and &quot;, and also between : and 1)&lt;/p&gt;
&lt;p&gt;so you will get 2:1 above instead of 2.2:1&lt;/p&gt;
&lt;p&gt;but if you want the ratio to one decimal place try this:&lt;/p&gt;
&lt;p&gt;=ROUND(B1/B2,1)&amp; &quot;: 1?&lt;/p&gt;
&lt;p&gt;if you want the ratio to two decimal places try this:&lt;/p&gt;
&lt;p&gt;=ROUND(B1/B2,2)&amp; &quot;: 1?&lt;/p&gt;
&lt;p&gt;etc&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>to approximate the above ratio to a whole number : 1 try this below</p>
<p>=ROUND(B1/B2,0)&amp; &#8220;: 1?     (put a space between &amp; and &#8220;, and also between : and 1)</p>
<p>so you will get 2:1 above instead of 2.2:1</p>
<p>but if you want the ratio to one decimal place try this:</p>
<p>=ROUND(B1/B2,1)&amp; &#8220;: 1?</p>
<p>if you want the ratio to two decimal places try this:</p>
<p>=ROUND(B1/B2,2)&amp; &#8220;: 1?</p>
<p>etc</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Reggie</title>
		<link>http://www.dailydoseofexcel.com/archives/2004/04/29/formatting-ratios/#comment-64618</link>
		<dc:creator>Reggie</dc:creator>
		<pubDate>Thu, 09 Jun 2011 21:42:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=507#comment-64618</guid>
		<description>&lt;p&gt;Thank you for this discussion. I helped me out of jam!&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Thank you for this discussion. I helped me out of jam!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rick Rothstein (MVP - Excel)</title>
		<link>http://www.dailydoseofexcel.com/archives/2004/04/29/formatting-ratios/#comment-61616</link>
		<dc:creator>Rick Rothstein (MVP - Excel)</dc:creator>
		<pubDate>Mon, 28 Mar 2011 18:31:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=507#comment-61616</guid>
		<description>&lt;p&gt;@Richard,&lt;/p&gt;
&lt;p&gt;In order to produce a ratio to something other than :1, you need to set one of the ratio items and calculate the other. To understand why, look at your example 8:10... that is identical to 16:20 and 4:5 as well as infinitely many other ratios. Here is a general set-up that will allow you to specify the right-hand number (the 10 in 8:10) and calculate the other. Put your staff member count (200) in A1 and your desk count (189) in A2, then put your right-hand target ratio value (10) in B1 and then finally put this formula in whatever cell you want to display the ratio in...&lt;/p&gt;
&lt;p&gt;=B1*A2/A1&amp;&quot;:&quot;&amp;B1&lt;/p&gt;
&lt;p&gt;You can produce other ratio displays by changing the value in B1 if 10 is not the target value you want for the right-hand number.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>@Richard,</p>
<p>In order to produce a ratio to something other than :1, you need to set one of the ratio items and calculate the other. To understand why, look at your example 8:10&#8230; that is identical to 16:20 and 4:5 as well as infinitely many other ratios. Here is a general set-up that will allow you to specify the right-hand number (the 10 in 8:10) and calculate the other. Put your staff member count (200) in A1 and your desk count (189) in A2, then put your right-hand target ratio value (10) in B1 and then finally put this formula in whatever cell you want to display the ratio in&#8230;</p>
<p>=B1*A2/A1&amp;&#8221;:&#8221;&amp;B1</p>
<p>You can produce other ratio displays by changing the value in B1 if 10 is not the target value you want for the right-hand number.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Richard</title>
		<link>http://www.dailydoseofexcel.com/archives/2004/04/29/formatting-ratios/#comment-61591</link>
		<dc:creator>Richard</dc:creator>
		<pubDate>Sun, 27 Mar 2011 22:25:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=507#comment-61591</guid>
		<description>&lt;p&gt;I have 200 staff members and 189 desks.  I want to know the ratio of staff to desks.  I don&#039;t want it drilled down to :1 as the UK Governement average is 8:10 desks.  I need to know what my ratio is as a whole on the floor so I can compare.&lt;/p&gt;
&lt;p&gt;Using Excel 2007 - what do I need to do to get the ratio and for it to display as &#039;Staff&#039;:&#039;Desks&#039; ?&lt;/p&gt;
&lt;p&gt;Thanks&lt;br&gt;
Richard&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>I have 200 staff members and 189 desks.  I want to know the ratio of staff to desks.  I don&#8217;t want it drilled down to :1 as the UK Governement average is 8:10 desks.  I need to know what my ratio is as a whole on the floor so I can compare.</p>
<p>Using Excel 2007 &#8211; what do I need to do to get the ratio and for it to display as &#8216;Staff&#8217;:'Desks&#8217; ?</p>
<p>Thanks<br />
Richard</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dick Kusleika</title>
		<link>http://www.dailydoseofexcel.com/archives/2004/04/29/formatting-ratios/#comment-57973</link>
		<dc:creator>Dick Kusleika</dc:creator>
		<pubDate>Thu, 27 Jan 2011 15:20:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=507#comment-57973</guid>
		<description>&lt;p&gt;You just have them backward.  To get &quot;1? you need to divide the first number by 3,209.  To get the second part of the ratio, you have to divide the second number by the same thing: 3,209.  So&lt;/p&gt;
&lt;div style=&quot;overflow: auto; white-space: nowrap;&quot; class=&quot;codecolorer-container text default&quot;&gt;&lt;div style=&quot;white-space: nowrap;&quot; class=&quot;text codecolorer&quot;&gt;=&quot;1:&quot;&amp;TEXT(B1/A1,&quot;0.00&quot;)&lt;/div&gt;&lt;/div&gt;
</description>
		<content:encoded><![CDATA[<p>You just have them backward.  To get &#8220;1? you need to divide the first number by 3,209.  To get the second part of the ratio, you have to divide the second number by the same thing: 3,209.  So</p>
<div style="overflow: auto; white-space: nowrap;" class="codecolorer-container text default">
<div style="white-space: nowrap;" class="text codecolorer">=&#8221;1:&#8221;&amp;TEXT(B1/A1,&#8221;0.00&#8243;)</div>
</div>
]]></content:encoded>
	</item>
	<item>
		<title>By: Maria</title>
		<link>http://www.dailydoseofexcel.com/archives/2004/04/29/formatting-ratios/#comment-57941</link>
		<dc:creator>Maria</dc:creator>
		<pubDate>Wed, 26 Jan 2011 23:10:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=507#comment-57941</guid>
		<description>&lt;p&gt;Hi&lt;/p&gt;
&lt;p&gt;I&#039;ve been going through these responses and have tried a few things. Some worked, some didn&#039;t. I have a two part question, though. (1) I am trying to calculate the ratio between two numbers. My spreadsheet looks like this:&lt;/p&gt;
&lt;div style=&quot;overflow: auto; white-space: nowrap;&quot; class=&quot;codecolorer-container text default&quot;&gt;&lt;div style=&quot;white-space: nowrap;&quot; class=&quot;text codecolorer&quot;&gt;# Registered Users&#160; # Published Works &#160; Ratio &lt;br&gt;
&#160; &#160; &#160; &#160; &lt;br&gt;
3,209 &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; 2,049 &#160; &#160; &#160; &#160; 1:1.57&lt;br&gt;
468 &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160;749&#160; &#160; &#160; &#160; &#160; 1:0.62&lt;br&gt;
173 &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160;492&#160; &#160; &#160; &#160; &#160; 1:0.35&lt;br&gt;
148 &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160;421&#160; &#160; &#160; &#160; &#160; 1:0.35&lt;/div&gt;&lt;/div&gt;
&lt;p&gt;I used the ratio formula =&quot;1:&quot;&amp;round(a1/b1, 2). My question is: Is this the correct formula? I know nothing about ratios but I feel like the ratios are incorrect for some reason. &lt;/p&gt;
&lt;p&gt;(2) Is there a way to calculate the average of this list of ratios, and present it in ratio form? My boss asked for this and I have no idea if it&#039;s even possible.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Hi</p>
<p>I&#8217;ve been going through these responses and have tried a few things. Some worked, some didn&#8217;t. I have a two part question, though. (1) I am trying to calculate the ratio between two numbers. My spreadsheet looks like this:</p>
<div style="overflow: auto; white-space: nowrap;" class="codecolorer-container text default">
<div style="white-space: nowrap;" class="text codecolorer"># Registered Users&nbsp; # Published Works &nbsp; Ratio <br />
&nbsp; &nbsp; &nbsp; &nbsp; <br />
3,209 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 2,049 &nbsp; &nbsp; &nbsp; &nbsp; 1:1.57<br />
468 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;749&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1:0.62<br />
173 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;492&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1:0.35<br />
148 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;421&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1:0.35</div>
</div>
<p>I used the ratio formula =&#8221;1:&#8221;&amp;round(a1/b1, 2). My question is: Is this the correct formula? I know nothing about ratios but I feel like the ratios are incorrect for some reason. </p>
<p>(2) Is there a way to calculate the average of this list of ratios, and present it in ratio form? My boss asked for this and I have no idea if it&#8217;s even possible.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Beezlebob</title>
		<link>http://www.dailydoseofexcel.com/archives/2004/04/29/formatting-ratios/#comment-40280</link>
		<dc:creator>Beezlebob</dc:creator>
		<pubDate>Sun, 19 Jul 2009 19:07:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=507#comment-40280</guid>
		<description>&lt;p&gt;Thanks - just what I was looking for.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Thanks &#8211; just what I was looking for.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Michelle</title>
		<link>http://www.dailydoseofexcel.com/archives/2004/04/29/formatting-ratios/#comment-40224</link>
		<dc:creator>Michelle</dc:creator>
		<pubDate>Sun, 12 Jul 2009 06:42:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=507#comment-40224</guid>
		<description>&lt;p&gt;Hello  Michael. &lt;/p&gt;
&lt;p&gt;This is what you wrote:&lt;br&gt;
It looks to me like it would &quot;department spent/total spent&quot;. That is&lt;/p&gt;
&lt;p&gt;$410/$1200, $250/$1200, $315/$1200, $90/$1200, $45/$1200 etc.&lt;/p&gt;
&lt;p&gt;And since that only totals 93%, etc pays 7%  &lt;/p&gt;
&lt;p&gt;Am I missing something here?&lt;/p&gt;
&lt;p&gt;My answer. Your answer worked out perfectly in this order.  &lt;/p&gt;
&lt;p&gt;I used your idea and finally it worked.  =total spent/total of all departments (absolute) / 100&lt;br&gt;
I tried to post the sum graphic but unable to.&lt;br&gt;
many thanks.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Hello  Michael. </p>
<p>This is what you wrote:<br />
It looks to me like it would &#8220;department spent/total spent&#8221;. That is</p>
<p>$410/$1200, $250/$1200, $315/$1200, $90/$1200, $45/$1200 etc.</p>
<p>And since that only totals 93%, etc pays 7%  </p>
<p>Am I missing something here?</p>
<p>My answer. Your answer worked out perfectly in this order.  </p>
<p>I used your idea and finally it worked.  =total spent/total of all departments (absolute) / 100<br />
I tried to post the sum graphic but unable to.<br />
many thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Michelle</title>
		<link>http://www.dailydoseofexcel.com/archives/2004/04/29/formatting-ratios/#comment-40223</link>
		<dc:creator>Michelle</dc:creator>
		<pubDate>Sun, 12 Jul 2009 03:44:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=507#comment-40223</guid>
		<description>&lt;p&gt;HI Everyone. &lt;/p&gt;
&lt;p&gt;It doesn&#039;t appear to be working for what I require. Maybe the way I communicated the query.&lt;br&gt;
If I have a total spent expense and I need to divide it over the various departments that have lesser or higher spent. Then the total % has to add up to 100% with none left over. So when I sum up the percentages against the departments it should equal 100%. &lt;/p&gt;
&lt;p&gt;Example&lt;br&gt;
total money spent&lt;br&gt;
1966&lt;/p&gt;
&lt;p&gt;Department 1 has spent 850 ? xxx% of 1966&lt;br&gt;
Department 2 has spent 950&lt;br&gt;
D. 3 has spent          50&lt;br&gt;
D. 4 has spent          64&lt;br&gt;
D. 5 has spent          52&lt;/p&gt;
&lt;p&gt;the percentage ought to value to 100%&lt;br&gt;
Cheers&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>HI Everyone. </p>
<p>It doesn&#8217;t appear to be working for what I require. Maybe the way I communicated the query.<br />
If I have a total spent expense and I need to divide it over the various departments that have lesser or higher spent. Then the total % has to add up to 100% with none left over. So when I sum up the percentages against the departments it should equal 100%. </p>
<p>Example<br />
total money spent<br />
1966</p>
<p>Department 1 has spent 850 ? xxx% of 1966<br />
Department 2 has spent 950<br />
D. 3 has spent          50<br />
D. 4 has spent          64<br />
D. 5 has spent          52</p>
<p>the percentage ought to value to 100%<br />
Cheers</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Khuwait</title>
		<link>http://www.dailydoseofexcel.com/archives/2004/04/29/formatting-ratios/#comment-40196</link>
		<dc:creator>Khuwait</dc:creator>
		<pubDate>Fri, 10 Jul 2009 06:42:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=507#comment-40196</guid>
		<description>&lt;p&gt;Thanks Gordon. It worked perfectly!&lt;/p&gt;
&lt;p&gt;I tried reversing it but got the order of the quotation marks wrong. I did 1:&quot;0.0? and the result was 1:00!&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Thanks Gordon. It worked perfectly!</p>
<p>I tried reversing it but got the order of the quotation marks wrong. I did 1:&#8221;0.0? and the result was 1:00!</p>
]]></content:encoded>
	</item>
</channel>
</rss>

