<?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: Remove Duplicates From Arrays</title>
	<atom:link href="http://www.dailydoseofexcel.com/archives/2006/01/16/remove-duplicates-from-arrays/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.dailydoseofexcel.com/archives/2006/01/16/remove-duplicates-from-arrays/</link>
	<description>Daily posts of Excel tips…and other stuff</description>
	<lastBuildDate>Wed, 08 Feb 2012 12:03:16 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: J.O.</title>
		<link>http://www.dailydoseofexcel.com/archives/2006/01/16/remove-duplicates-from-arrays/#comment-26006</link>
		<dc:creator>J.O.</dc:creator>
		<pubDate>Fri, 27 Jul 2007 11:59:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=1315#comment-26006</guid>
		<description>&lt;p&gt;This code does NOT remove duplicates!&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>This code does NOT remove duplicates!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Farzooq Hussain</title>
		<link>http://www.dailydoseofexcel.com/archives/2006/01/16/remove-duplicates-from-arrays/#comment-18373</link>
		<dc:creator>Farzooq Hussain</dc:creator>
		<pubDate>Fri, 20 Jan 2006 16:19:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=1315#comment-18373</guid>
		<description>&lt;p&gt;How to make a cell constant during sum.&lt;/p&gt;
&lt;p&gt;For example:&lt;/p&gt;
&lt;p&gt;Date    Files Done Daily  Total Sum&lt;/p&gt;
&lt;p&gt;1/20/20065             30&lt;br&gt;
1/21/20065&lt;br&gt;
1/22/20065&lt;br&gt;
1/23/20065&lt;br&gt;
1/24/20065&lt;br&gt;
1/25/20065&lt;/p&gt;
&lt;p&gt;I review daily certain number of files.&lt;br&gt;
I want to make the total sum constant.&lt;br&gt;
that whenever i review more files daily it should be added automatically to Total Sum. &lt;/p&gt;
&lt;p&gt;And its also should not effect the Total Sum, if i a value under, Files Done Daily.&lt;/p&gt;
&lt;p&gt;Thanks,&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>How to make a cell constant during sum.</p>
<p>For example:</p>
<p>Date    Files Done Daily  Total Sum</p>
<p>1/20/20065             30<br />
1/21/20065<br />
1/22/20065<br />
1/23/20065<br />
1/24/20065<br />
1/25/20065</p>
<p>I review daily certain number of files.<br />
I want to make the total sum constant.<br />
that whenever i review more files daily it should be added automatically to Total Sum. </p>
<p>And its also should not effect the Total Sum, if i a value under, Files Done Daily.</p>
<p>Thanks,</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ross</title>
		<link>http://www.dailydoseofexcel.com/archives/2006/01/16/remove-duplicates-from-arrays/#comment-18371</link>
		<dc:creator>ross</dc:creator>
		<pubDate>Fri, 20 Jan 2006 11:15:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=1315#comment-18371</guid>
		<description>&lt;p&gt;test some code:&lt;/p&gt;
&lt;p&gt;&quot;&#039;Checks if SO, PO, YO, CO need to be corrected&lt;br&gt;
&quot;&#039; Function is passed and will ruten the WHOLE outcode&lt;br&gt;
Function O_Excprtions(sOutcode As String)&lt;br&gt;
     Dim sFirstLetter As String&lt;br&gt;
    sFirstLetter = UCase(Left(sOutcode, 1))&lt;br&gt;
    &#039; if one of the do-dars&lt;br&gt;
    If sFirstLetter = &quot;S&quot; Or sFirstLetter = &quot;P&quot; Or _&lt;br&gt;
        sFirstLetter = &quot;Y&quot; Or sFirstLetter = &quot;C&quot; Then&lt;br&gt;
    &#039;replace with O&lt;br&gt;
    O_Excprtions = WorksheetFunction.Replace(sOutcode, 2, 1, &quot;O&quot;)&lt;br&gt;
    Else&lt;br&gt;
    O_Excprtions = sOutcode&lt;br&gt;
    End If&lt;br&gt;
End Function&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>test some code:</p>
<p>&#8220;&#8216;Checks if SO, PO, YO, CO need to be corrected<br />
&#8220;&#8216; Function is passed and will ruten the WHOLE outcode<br />
Function O_Excprtions(sOutcode As String)<br />
     Dim sFirstLetter As String<br />
    sFirstLetter = UCase(Left(sOutcode, 1))<br />
    &#8216; if one of the do-dars<br />
    If sFirstLetter = &#8220;S&#8221; Or sFirstLetter = &#8220;P&#8221; Or _<br />
        sFirstLetter = &#8220;Y&#8221; Or sFirstLetter = &#8220;C&#8221; Then<br />
    &#8216;replace with O<br />
    O_Excprtions = WorksheetFunction.Replace(sOutcode, 2, 1, &#8220;O&#8221;)<br />
    Else<br />
    O_Excprtions = sOutcode<br />
    End If<br />
End Function</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tushar Mehta</title>
		<link>http://www.dailydoseofexcel.com/archives/2006/01/16/remove-duplicates-from-arrays/#comment-18361</link>
		<dc:creator>Tushar Mehta</dc:creator>
		<pubDate>Thu, 19 Jan 2006 19:19:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=1315#comment-18361</guid>
		<description>&lt;p&gt;Interesting exercise.  FWIW, I wrote up an alternative approach to the task and posted the result to he programming NG.&lt;/p&gt;
&lt;p&gt;I would have posted it here but the code always gets all messed up.  And, yes, if there is a way to fix that I don&#039;t know it. :)&lt;/p&gt;
&lt;p&gt;The post&#039;s ID is &lt;a href=&quot;mailto:MPG.1e399e4a4bdd1b3598b2fa@msnews.microsoft.com&quot;&gt;MPG.1e399e4a4bdd1b3598b2fa@msnews.microsoft.com&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;The direct google.com archive is &lt;a href=&quot;http://groups.google.com/group/microsoft.public.excel.programming/msg/b923181ccbdff1e1&quot; rel=&quot;nofollow&quot;&gt;http://groups.google.com/group/microsoft.public.excel.programming/msg/b923181ccbdff1e1&lt;/a&gt;&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Interesting exercise.  FWIW, I wrote up an alternative approach to the task and posted the result to he programming NG.</p>
<p>I would have posted it here but the code always gets all messed up.  And, yes, if there is a way to fix that I don&#8217;t know it. <img src='http://www.dailydoseofexcel.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>The post&#8217;s ID is <a href="mailto:MPG.1e399e4a4bdd1b3598b2fa@msnews.microsoft.com">MPG.1e399e4a4bdd1b3598b2fa@msnews.microsoft.com</a></p>
<p>The direct google.com archive is <a href="http://groups.google.com/group/microsoft.public.excel.programming/msg/b923181ccbdff1e1" rel="nofollow">http://groups.google.com/group/microsoft.public.excel.programming/msg/b923181ccbdff1e1</a></p>
]]></content:encoded>
	</item>
</channel>
</rss>

