<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Blog of Travis Hydzik &#187; Excel</title>
	<atom:link href="http://thydzik.com/tag/excel/feed/" rel="self" type="application/rss+xml" />
	<link>http://thydzik.com</link>
	<description>random snippets and information</description>
	<lastBuildDate>Mon, 30 Apr 2012 15:46:07 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Calculate Stamp Duty with Excel</title>
		<link>http://thydzik.com/calculate-stamp-duty-with-excel/</link>
		<comments>http://thydzik.com/calculate-stamp-duty-with-excel/#comments</comments>
		<pubDate>Thu, 22 Dec 2011 06:46:46 +0000</pubDate>
		<dc:creator>thydzik</dc:creator>
				<category><![CDATA[Investment]]></category>
		<category><![CDATA[Management]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[ATO]]></category>
		<category><![CDATA[calculate]]></category>
		<category><![CDATA[Excel]]></category>
		<category><![CDATA[formula]]></category>
		<category><![CDATA[Stamp Duty]]></category>
		<category><![CDATA[tax]]></category>

		<guid isPermaLink="false">http://thydzik.com/?p=884</guid>
		<description><![CDATA[A quick post of how to calculate the Stamp Duty of a property with Excel, in my example I am using the Western Australia Residential Rate Dutiable value. Download the Excel WorkBook. Update, next day This also works for Individual income tax rates;<div class="addthis_toolbox addthis_default_style addthis_" addthis:url='http://thydzik.com/calculate-stamp-duty-with-excel/' addthis:title='Calculate Stamp Duty with Excel ' ><a class="addthis_button_preferred_1"></a><a class="addthis_button_preferred_2"></a><a class="addthis_button_preferred_3"></a><a class="addthis_button_preferred_4"></a><a class="addthis_button_compact"></a></div>]]></description>
			<content:encoded><![CDATA[<p>A quick post of how to calculate the Stamp Duty of a property with Excel, in my example I am using the <a title="Residential Rate Dutiable value" href="http://www.finance.wa.gov.au/cms/content.aspx?id=2071" target="_blank">Western Australia Residential Rate Dutiable value</a>.</p>
<pre class="brush: plain; title: ; notranslate">
Stamp Duty
Cutoff [$]  Rate [%]  Duty [$]  Formula
0           1.9       0    0
120000      2.85      2280      =C3+(A4-A3)*B3/100
150000      3.8       3135      =C4+(A5-A4)*B4/100
360000      4.75      11115     =C5+(A6-A5)*B5/100
725000      5.15      28452.5   =C6+(A7-A6)*B6/100

Property Value        500000    
Duty                  17765     =VLOOKUP(C9,A:C,3,TRUE) + (C9-VLOOKUP(C9,A:C,1,TRUE))*VLOOKUP(C9,A:C,2,TRUE)/100
</pre>
<p><a title="Download example stamp duty calculation WorkBook" href="http://thydzik.com/downloads/stamp-duty-calculation.xlsm">Download the Excel WorkBook</a>.</p>
<p><strong>Update, next day</strong><br />
This also works for <a href="http://www.ato.gov.au/individuals/content.aspx?doc=/content/12333.htm" title="Individual income tax rates">Individual income tax rates</a>;</p>
<pre class="brush: plain; title: ; notranslate">
Tax Rates
Cutoff [$]  Rate [%] Tax [$]  Formula
0           0        0        0
6000        15       0        =C3+(A4-A3)*B3/100
37000       30       4650     =C4+(A5-A4)*B4/100
80000       37       17550    =C5+(A6-A5)*B5/100
180000      45       54550    =C6+(A7-A6)*B6/100

Income               100000
Tax                  24950    =VLOOKUP(C9,A:C,3,TRUE) + (C9-VLOOKUP(C9,A:C,1,TRUE))*VLOOKUP(C9,A:C,2,TRUE)/100
</pre>
<div class="addthis_toolbox addthis_default_style addthis_" addthis:url='http://thydzik.com/calculate-stamp-duty-with-excel/' addthis:title='Calculate Stamp Duty with Excel ' ><a class="addthis_button_preferred_1"></a><a class="addthis_button_preferred_2"></a><a class="addthis_button_preferred_3"></a><a class="addthis_button_preferred_4"></a><a class="addthis_button_compact"></a></div>]]></content:encoded>
			<wfw:commentRss>http://thydzik.com/calculate-stamp-duty-with-excel/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>In Excel, find the value on the last row as a function, not VBA</title>
		<link>http://thydzik.com/in-excel-find-the-value-on-the-last-row-as-a-function-not-vba/</link>
		<comments>http://thydzik.com/in-excel-find-the-value-on-the-last-row-as-a-function-not-vba/#comments</comments>
		<pubDate>Sun, 19 Jul 2009 23:58:53 +0000</pubDate>
		<dc:creator>thydzik</dc:creator>
				<category><![CDATA[Random]]></category>
		<category><![CDATA[Excel]]></category>
		<category><![CDATA[function]]></category>
		<category><![CDATA[last row]]></category>
		<category><![CDATA[not VBA]]></category>

		<guid isPermaLink="false">http://thydzik.com/?p=256</guid>
		<description><![CDATA[Here is a quick post, how to find the value of the last cell in a column. Exaample below uses Column A with the first 3 rows used for the header: =INDEX(A:A,COUNT(A:A)+3)<div class="addthis_toolbox addthis_default_style addthis_" addthis:url='http://thydzik.com/in-excel-find-the-value-on-the-last-row-as-a-function-not-vba/' addthis:title='In Excel, find the value on the last row as a function, not VBA ' ><a class="addthis_button_preferred_1"></a><a class="addthis_button_preferred_2"></a><a class="addthis_button_preferred_3"></a><a class="addthis_button_preferred_4"></a><a class="addthis_button_compact"></a></div>]]></description>
			<content:encoded><![CDATA[<p>Here is a quick post, how to find the value of the last cell in a column.</p>
<p>Exaample below uses Column A with the first 3 rows used for the header:</p>
<pre>=INDEX(A:A,COUNT(A:A)+3)</pre>
<div class="addthis_toolbox addthis_default_style addthis_" addthis:url='http://thydzik.com/in-excel-find-the-value-on-the-last-row-as-a-function-not-vba/' addthis:title='In Excel, find the value on the last row as a function, not VBA ' ><a class="addthis_button_preferred_1"></a><a class="addthis_button_preferred_2"></a><a class="addthis_button_preferred_3"></a><a class="addthis_button_preferred_4"></a><a class="addthis_button_compact"></a></div>]]></content:encoded>
			<wfw:commentRss>http://thydzik.com/in-excel-find-the-value-on-the-last-row-as-a-function-not-vba/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using disk: enhanced
Object Caching 538/540 objects using disk: basic
Content Delivery Network via t01.thydzik.com

Served from: thydzik.com @ 2012-05-22 14:07:31 -->
