<?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: How to: Quickly remove duplicated records</title>
	<atom:link href="http://www.asap-utilities.com/blog/index.php/2010/02/18/how-to-quickly-remove-duplicated-records/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.asap-utilities.com/blog/index.php/2010/02/18/how-to-quickly-remove-duplicated-records/</link>
	<description>Supercharge Excel</description>
	<lastBuildDate>Thu, 26 Jan 2012 07:52:15 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Phil</title>
		<link>http://www.asap-utilities.com/blog/index.php/2010/02/18/how-to-quickly-remove-duplicated-records/comment-page-1/#comment-37086</link>
		<dc:creator>Phil</dc:creator>
		<pubDate>Fri, 19 Feb 2010 07:33:11 +0000</pubDate>
		<guid isPermaLink="false">http://www.asap-utilities.com/blog/?p=797#comment-37086</guid>
		<description>Interesting, very interesting ;-)

that will save me a lot of time ;-)

 If you want to manage this within a VBA-solution, this piece of code would be a good starting point:

Sub RemoveDupes()

Range(&quot;RANGE&quot;).AdvancedFilter _ 
Action:=xlFilterCopy, _
CopyToRange:=Range(&quot;NEWRANGE&quot;), _ 
Unique:=True

End Sub

Two notes:
- Replace RANGE with the original range you want to remove duplicates from
- Replace NEWRANGE with the range you want to copy the new duplicate-free content to

I have struggled with this problem quite some time so the post from Bastien come just in time to mention my findings :-)

Phil</description>
		<content:encoded><![CDATA[<p>Interesting, very interesting ;-)</p>
<p>that will save me a lot of time ;-)</p>
<p> If you want to manage this within a VBA-solution, this piece of code would be a good starting point:</p>
<p>Sub RemoveDupes()</p>
<p>Range("RANGE").AdvancedFilter _<br />
Action:=xlFilterCopy, _<br />
CopyToRange:=Range("NEWRANGE"), _<br />
Unique:=True</p>
<p>End Sub</p>
<p>Two notes:<br />
- Replace RANGE with the original range you want to remove duplicates from<br />
- Replace NEWRANGE with the range you want to copy the new duplicate-free content to</p>
<p>I have struggled with this problem quite some time so the post from Bastien come just in time to mention my findings :-)</p>
<p>Phil</p>
]]></content:encoded>
	</item>
</channel>
</rss>

