<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/">
	<channel>
		<title>Duplicate Integer Remover</title>
		<link>/blogentry/62539</link>
		<atom:link href="https://www.lotterypost.com/rss/blogcomments/62539" rel="self" type="application/rss+xml" />
		<description>time*treat's Blog: Duplicate Integer Remover</description>
		<dc:language>en-us</dc:language>
		<generator>Lottery Post RSS Generator</generator>
		<item>
			<title>Original Blog Entry: Duplicate Integer Remover</title>
			<link>/blogentry/62539</link>
			<guid isPermaLink="true">/blogentry/62539</guid>
			<pubDate>Fri, 20 Jan 2012 22:21:19 GMT</pubDate>
			<dc:creator>time*treat</dc:creator>
			<description><![CDATA[<p>Option Explicit<br /><br />Sub Duplicate__Integer__Remover()<br /><br />&#x27;by time*treat&#x27;<br /><br />&#x27;grabs a max of about 32,000 integers with values between 0 and 9, inclusive&#x27;<br /><br />&#x27;sorts and removes any duplicates&#x27;<br /><br />&#x27;inputs from one column and outputs to another column&#x27;<br /><br />Dim input__col As Integer, output__col As Integer<br /><br />Dim input__row As Integer, output__row As Integer<br /><br />Dim holding__tank() As Integer, int__val As Integer<br /><br />&#x27;initialize&#x27;<br /><br />input__col = 6<br /><br />output__col = 10<br /><br />ReDim holding__tank(0 To 9)<br /><br />For int__val = 0 To 9<br /><br />holding__tank(int__val) = 0<br /><br />Next int__val<br /><br />&#x27;get list&#x27;<br /><br />input__row = 1<br /><br />While Sheet1.Cells(input__row, input__col).Value<br /><br />holding__tank(Sheet1.Cells(input__row, input__col).Value) = 1<br /><br />input__row = input__row + 1<br /><br />Wend<br /><br />&#x27;build output&#x27;<br /><br />output__row = 0<br /><br />For int__val = 0 To 9<br /><br />If holding__tank(int__val) = 1 Then<br /><br />output__row = output__row + 1<br /><br />Sheet1.Cells(output__row, output__col).Value = int__val<br /><br />End If<br /><br />Next int__val<br /><br />End Sub<br /><br />... &#x5b;&#xa0;<a href="/blogentry/62539">More</a>&#xa0;&#x5d;</p>]]></description>
			<category>Blog Entry</category>
			<category>time*treat</category>
			<wfw:comment>https://www.lotterypost.com/blogentry/62539</wfw:comment>
		</item>
	</channel>
</rss>

