<?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: Freemium Business Model Template</title>
	<atom:link href="http://giffconstable.com/2009/11/freemium-business-model-template/feed/" rel="self" type="application/rss+xml" />
	<link>http://giffconstable.com/2009/11/freemium-business-model-template/</link>
	<description>Giff Constable's blog on technology, media, startups, and whatever else interests me</description>
	<lastBuildDate>Thu, 11 Mar 2010 02:08:58 -0500</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Keeping It Simple: Unit Economics — giffconstable.com</title>
		<link>http://giffconstable.com/2009/11/freemium-business-model-template/comment-page-1/#comment-229</link>
		<dc:creator>Keeping It Simple: Unit Economics — giffconstable.com</dc:creator>
		<pubDate>Mon, 22 Feb 2010 04:41:49 +0000</pubDate>
		<guid isPermaLink="false">http://giffconstable.com/?p=200#comment-229</guid>
		<description>[...] in November, I wrote about financial modeling and wanted to pick up the topic again. I think this is very important for lean startups.  A [...]</description>
		<content:encoded><![CDATA[<p>[...] in November, I wrote about financial modeling and wanted to pick up the topic again. I think this is very important for lean startups.  A [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: giffc</title>
		<link>http://giffconstable.com/2009/11/freemium-business-model-template/comment-page-1/#comment-63</link>
		<dc:creator>giffc</dc:creator>
		<pubDate>Sat, 21 Nov 2009 14:44:20 +0000</pubDate>
		<guid isPermaLink="false">http://giffconstable.com/?p=200#comment-63</guid>
		<description>Hello Claudius,&lt;br&gt;Basically the offset function in excel allows you to change where the formula is really pointing to.  In the case of user churn, what it wants to do is multiply the number of new users from X months ago by the number of users lost that month.  It points up to row ten, and then offsets X number of months to the left to find the right number of new users.  Then it does a VLOOKUP to the &quot;churntable&quot; array on the assumptions tab (which starts at C17) to pull the right loss % for the right month.  The ISNUMBER function is just error checking.&lt;br&gt;&lt;br&gt;It seems a bit complicated a first, but go into Excel help and look up the offset and vlookup functions and it will make more sense.  &quot;Churntable&quot; is a named range of cells, so if you are new to excel you&#039;ll want to look that up as well.</description>
		<content:encoded><![CDATA[<p>Hello Claudius,<br />Basically the offset function in excel allows you to change where the formula is really pointing to.  In the case of user churn, what it wants to do is multiply the number of new users from X months ago by the number of users lost that month.  It points up to row ten, and then offsets X number of months to the left to find the right number of new users.  Then it does a VLOOKUP to the &#8220;churntable&#8221; array on the assumptions tab (which starts at C17) to pull the right loss % for the right month.  The ISNUMBER function is just error checking.</p>
<p>It seems a bit complicated a first, but go into Excel help and look up the offset and vlookup functions and it will make more sense.  &#8220;Churntable&#8221; is a named range of cells, so if you are new to excel you&#39;ll want to look that up as well.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Claudius</title>
		<link>http://giffconstable.com/2009/11/freemium-business-model-template/comment-page-1/#comment-62</link>
		<dc:creator>Claudius</dc:creator>
		<pubDate>Sat, 21 Nov 2009 14:36:47 +0000</pubDate>
		<guid isPermaLink="false">http://giffconstable.com/?p=200#comment-62</guid>
		<description>Mr. Constable and others,&lt;br&gt;&lt;br&gt;I have a couple of questions about the mechanics in this spreadsheet. &lt;br&gt;&lt;br&gt;1. In the Model tab the &quot;User Churn&quot; formula is this: =IF(ISNUMBER(OFFSET(AR$10,0,-$C14)*VLOOKUP($C14,ChurnTable,2,0)),(OFFSET(AR$10,0,-$C14)*VLOOKUP($C14,ChurnTable,2,0)),0)&lt;br&gt;What is this formula doing?&lt;br&gt;&lt;br&gt;2. In the same model tab there is&quot;premium subscribers&quot; formula is:&lt;br&gt;=IF(ISNUMBER(OFFSET(AR$10,0,-$C66)*VLOOKUP($C66,ChurnTable,3,0)*VLOOKUP($C66,ConversionTable,2,0)),OFFSET(AR$10,0,-$C66)*VLOOKUP($C66,ChurnTable,3,0)*VLOOKUP($C66,ConversionTable,2,0))*1&lt;br&gt;The same question as before. What is this doing?</description>
		<content:encoded><![CDATA[<p>Mr. Constable and others,</p>
<p>I have a couple of questions about the mechanics in this spreadsheet. </p>
<p>1. In the Model tab the &#8220;User Churn&#8221; formula is this: =IF(ISNUMBER(OFFSET(AR$10,0,-$C14)*VLOOKUP($C14,ChurnTable,2,0)),(OFFSET(AR$10,0,-$C14)*VLOOKUP($C14,ChurnTable,2,0)),0)<br />What is this formula doing?</p>
<p>2. In the same model tab there is&#8221;premium subscribers&#8221; formula is:<br />=IF(ISNUMBER(OFFSET(AR$10,0,-$C66)*VLOOKUP($C66,ChurnTable,3,0)*VLOOKUP($C66,ConversionTable,2,0)),OFFSET(AR$10,0,-$C66)*VLOOKUP($C66,ChurnTable,3,0)*VLOOKUP($C66,ConversionTable,2,0))*1<br />The same question as before. What is this doing?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anders Sundelin</title>
		<link>http://giffconstable.com/2009/11/freemium-business-model-template/comment-page-1/#comment-54</link>
		<dc:creator>Anders Sundelin</dc:creator>
		<pubDate>Fri, 13 Nov 2009 20:02:39 +0000</pubDate>
		<guid isPermaLink="false">http://giffconstable.com/?p=200#comment-54</guid>
		<description>Great article! &lt;br&gt;Business modeling forces the business model designer or analyzer to identify key variables, make and verify important assumptions, test for different scenarios and by that understand the complexities of the business model and how different attributes and factors relate to each other.&lt;br&gt;&lt;br&gt;When designing models I recommend the following process:&lt;br&gt;1. Identify the purpose with the business modeling and the outputs required.&lt;br&gt;2. Identify the input variables and major drivers of input variables that determine the outputs.&lt;br&gt;3. Develop formulas (logical arguments) for how outputs are derived from inputs.&lt;br&gt;4. Gather data and make assumptions.&lt;br&gt;5. Build the spreadsheet model.&lt;br&gt;6. Test the spreadsheet model.&lt;br&gt;7. Enter gathered data.&lt;br&gt;8. Test alternative scenarios. &lt;br&gt;9. Analyze the results.&lt;br&gt;10. Adjust the business model.&lt;br&gt;For more details about each step, see The Business Model Database: &lt;a href=&quot;http://www.tbmdb.com&quot; rel=&quot;nofollow&quot;&gt;http://www.tbmdb.com&lt;/a&gt;</description>
		<content:encoded><![CDATA[<p>Great article! <br />Business modeling forces the business model designer or analyzer to identify key variables, make and verify important assumptions, test for different scenarios and by that understand the complexities of the business model and how different attributes and factors relate to each other.</p>
<p>When designing models I recommend the following process:<br />1. Identify the purpose with the business modeling and the outputs required.<br />2. Identify the input variables and major drivers of input variables that determine the outputs.<br />3. Develop formulas (logical arguments) for how outputs are derived from inputs.<br />4. Gather data and make assumptions.<br />5. Build the spreadsheet model.<br />6. Test the spreadsheet model.<br />7. Enter gathered data.<br />8. Test alternative scenarios. <br />9. Analyze the results.<br />10. Adjust the business model.<br />For more details about each step, see The Business Model Database: <a href="http://www.tbmdb.com" rel="nofollow">http://www.tbmdb.com</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: justinpirie</title>
		<link>http://giffconstable.com/2009/11/freemium-business-model-template/comment-page-1/#comment-36</link>
		<dc:creator>justinpirie</dc:creator>
		<pubDate>Sat, 07 Nov 2009 15:00:53 +0000</pubDate>
		<guid isPermaLink="false">http://giffconstable.com/?p=200#comment-36</guid>
		<description>Kudos to you Giff- an EXCELLENT model- THANKS.&lt;br&gt;&lt;br&gt;@justinpirie</description>
		<content:encoded><![CDATA[<p>Kudos to you Giff- an EXCELLENT model- THANKS.</p>
<p>@justinpirie</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mdebenedittis</title>
		<link>http://giffconstable.com/2009/11/freemium-business-model-template/comment-page-1/#comment-33</link>
		<dc:creator>mdebenedittis</dc:creator>
		<pubDate>Fri, 06 Nov 2009 13:35:48 +0000</pubDate>
		<guid isPermaLink="false">http://giffconstable.com/?p=200#comment-33</guid>
		<description>Great tool Giff, you could do an entire series of posts around each set of assumptions.</description>
		<content:encoded><![CDATA[<p>Great tool Giff, you could do an entire series of posts around each set of assumptions.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: timothyvanloan</title>
		<link>http://giffconstable.com/2009/11/freemium-business-model-template/comment-page-1/#comment-32</link>
		<dc:creator>timothyvanloan</dc:creator>
		<pubDate>Fri, 06 Nov 2009 02:21:43 +0000</pubDate>
		<guid isPermaLink="false">http://giffconstable.com/?p=200#comment-32</guid>
		<description>This is an excellent post- and financial model- for a freemium service. It dovetails well with a lot of the high-level presentations on the topic of &quot;freemium&quot; by people like Chris Anderson. The detail you go into here though is really helpful for companies considering this model to attain revenue.&lt;br&gt;&lt;br&gt;We summarized Chris Anderson&#039;s discussion on Freemium biz models at this year&#039;s startup weekend- you can find it at:&lt;br&gt;&lt;a href=&quot;http://blog.recurly.com/2009/10/chris-anderson-on-why-freemium-models-work/&quot; rel=&quot;nofollow&quot;&gt;http://blog.recurly.com/2009/10/chris-anderson-...&lt;/a&gt;&lt;br&gt;&lt;br&gt;Freemium models also typically require subscription billing- which is solely what our company Recurly does. We can help you quickly take the pricing models you create here and turn them into subscription plans you can bill your customers with. Find out more at our site at &lt;a href=&quot;http://recurly.com&quot; rel=&quot;nofollow&quot;&gt;http://recurly.com&lt;/a&gt;</description>
		<content:encoded><![CDATA[<p>This is an excellent post- and financial model- for a freemium service. It dovetails well with a lot of the high-level presentations on the topic of &#8220;freemium&#8221; by people like Chris Anderson. The detail you go into here though is really helpful for companies considering this model to attain revenue.</p>
<p>We summarized Chris Anderson&#39;s discussion on Freemium biz models at this year&#39;s startup weekend- you can find it at:<br /><a href="http://blog.recurly.com/2009/10/chris-anderson-on-why-freemium-models-work/" rel="nofollow"></a><a href="http://blog.recurly.com/2009/10/chris-anderson-.." rel="nofollow">http://blog.recurly.com/2009/10/chris-anderson-..</a>.</p>
<p>Freemium models also typically require subscription billing- which is solely what our company Recurly does. We can help you quickly take the pricing models you create here and turn them into subscription plans you can bill your customers with. Find out more at our site at <a href="http://recurly.com" rel="nofollow">http://recurly.com</a></p>
]]></content:encoded>
	</item>
</channel>
</rss>
