<?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: Populating Multi-Column ListBox/ComboBox</title>
	<atom:link href="http://www.dailydoseofexcel.com/archives/2004/05/10/populating-multi-column-listboxcombobox/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.dailydoseofexcel.com/archives/2004/05/10/populating-multi-column-listboxcombobox/</link>
	<description>Daily posts of Excel tips…and other stuff</description>
	<lastBuildDate>Thu, 09 Feb 2012 23:42:03 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: tumdo2</title>
		<link>http://www.dailydoseofexcel.com/archives/2004/05/10/populating-multi-column-listboxcombobox/#comment-66902</link>
		<dc:creator>tumdo2</dc:creator>
		<pubDate>Tue, 11 Oct 2011 07:31:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=531#comment-66902</guid>
		<description>&lt;p&gt;Hi&lt;br&gt;
I have small problem&lt;br&gt;
1. I have combobox and few labels, which read in sheet rows and columns&lt;br&gt;
   I need read information read in combobox  and label to one row which element like&lt;br&gt;
   read information from difrent row&lt;br&gt;
2. If I have  more comboboxes i using one of them and read information from difrent     rows when i change the element i combobox then every other combobox and labels change row to this same&lt;br&gt;
Thank you for help&lt;br&gt;
Patryk&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Hi<br />
I have small problem<br />
1. I have combobox and few labels, which read in sheet rows and columns<br />
   I need read information read in combobox  and label to one row which element like<br />
   read information from difrent row<br />
2. If I have  more comboboxes i using one of them and read information from difrent     rows when i change the element i combobox then every other combobox and labels change row to this same<br />
Thank you for help<br />
Patryk</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: tumdo2</title>
		<link>http://www.dailydoseofexcel.com/archives/2004/05/10/populating-multi-column-listboxcombobox/#comment-66901</link>
		<dc:creator>tumdo2</dc:creator>
		<pubDate>Tue, 11 Oct 2011 07:24:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=531#comment-66901</guid>
		<description>&lt;p&gt;Hi&lt;br&gt;
I have small problem&lt;br&gt;
1. I have combobox and few labels, which read in sheet rows and columns&lt;br&gt;
   I need read information read in combobox  and label to one row which element like&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Hi<br />
I have small problem<br />
1. I have combobox and few labels, which read in sheet rows and columns<br />
   I need read information read in combobox  and label to one row which element like</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gideono Odushola</title>
		<link>http://www.dailydoseofexcel.com/archives/2004/05/10/populating-multi-column-listboxcombobox/#comment-62638</link>
		<dc:creator>Gideono Odushola</dc:creator>
		<pubDate>Tue, 26 Apr 2011 18:49:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=531#comment-62638</guid>
		<description>&lt;p&gt;Hi&lt;br&gt;
Thanks for sharing your wealth of knowledge in Excel VBA, I have benefited from one of your codes shown above.. I was wondering if you could help me slightly further, I have managed to adjust your code (shown below) to work for me, but I am unable to get this codes to populate a multi column listbox with cells values obtain from excel range (i.e. A2:C10).. but the problem is i have rows that are empty (i.e A5:C5, row 5) and I want the listbox values to exclude this row. is it possible to amend the sode below to do this please...&lt;/p&gt;
&lt;div style=&quot;overflow: auto; white-space: nowrap;&quot; class=&quot;codecolorer-container vb default&quot;&gt;&lt;div style=&quot;white-space: nowrap;&quot; class=&quot;vb codecolorer&quot;&gt;&lt;span class=&quot;kw1&quot;&gt;Private&lt;/span&gt; &lt;span class=&quot;kw1&quot;&gt;Sub&lt;/span&gt; UserForm_Initialize()&lt;br&gt;
&#160; &#160; &lt;span class=&quot;kw1&quot;&gt;Dim&lt;/span&gt; cell &lt;span class=&quot;kw1&quot;&gt;As&lt;/span&gt; Range&lt;br&gt;
&#160; &#160; &lt;span class=&quot;kw1&quot;&gt;Dim&lt;/span&gt; Rng &lt;span class=&quot;kw1&quot;&gt;As&lt;/span&gt; Range&lt;br&gt;
&#160; &#160; &lt;br&gt;
&#160; &#160; &lt;span class=&quot;kw1&quot;&gt;With&lt;/span&gt; ThisWorkbook.Sheets(&quot;Sheet1?)&lt;br&gt;
&#160; &#160; &#160; &#160; &lt;span class=&quot;kw1&quot;&gt;Set&lt;/span&gt; Rng = .Range(&quot;A2?, .Range(&quot;A2?).&lt;span class=&quot;kw1&quot;&gt;End&lt;/span&gt;(xlDown))&lt;br&gt;
&#160; &#160; &lt;span class=&quot;kw1&quot;&gt;End&lt;/span&gt; &lt;span class=&quot;kw1&quot;&gt;With&lt;/span&gt;&lt;br&gt;
&#160; &#160; &lt;br&gt;
&#160; &#160; &lt;span class=&quot;kw1&quot;&gt;For&lt;/span&gt; &lt;span class=&quot;kw1&quot;&gt;Each&lt;/span&gt; cell &lt;span class=&quot;kw1&quot;&gt;In&lt;/span&gt; Rng.Cells&lt;br&gt;
&#160; &#160; &#160; &#160; &lt;span class=&quot;kw1&quot;&gt;With&lt;/span&gt; Me.ListBox1&lt;br&gt;
&#160; &#160; &#160; &#160; &#160; &#160; .AddItem cell.Value&lt;br&gt;
&#160; &#160; &#160; &#160; &#160; &#160; .List(.ListCount - 1, 1) = cell.Offset(0, 1).Value&lt;br&gt;
&#160; &#160; &#160; &#160; &#160; &#160; .List(.ListCount - 1, 2) = cell.Offset(0, 2).Value&lt;br&gt;
&#160; &#160; &#160; &#160; &lt;span class=&quot;kw1&quot;&gt;End&lt;/span&gt; &lt;span class=&quot;kw1&quot;&gt;With&lt;/span&gt;&lt;br&gt;
&#160; &#160; &lt;span class=&quot;kw1&quot;&gt;Next&lt;/span&gt; cell&lt;br&gt;
&#160; &#160; &lt;br&gt;
&lt;span class=&quot;kw1&quot;&gt;End&lt;/span&gt; &lt;span class=&quot;kw1&quot;&gt;Sub&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;
</description>
		<content:encoded><![CDATA[<p>Hi<br />
Thanks for sharing your wealth of knowledge in Excel VBA, I have benefited from one of your codes shown above.. I was wondering if you could help me slightly further, I have managed to adjust your code (shown below) to work for me, but I am unable to get this codes to populate a multi column listbox with cells values obtain from excel range (i.e. A2:C10).. but the problem is i have rows that are empty (i.e A5:C5, row 5) and I want the listbox values to exclude this row. is it possible to amend the sode below to do this please&#8230;</p>
<div style="overflow: auto; white-space: nowrap;" class="codecolorer-container vb default">
<div style="white-space: nowrap;" class="vb codecolorer"><span class="kw1">Private</span> <span class="kw1">Sub</span> UserForm_Initialize()<br />
&nbsp; &nbsp; <span class="kw1">Dim</span> cell <span class="kw1">As</span> Range<br />
&nbsp; &nbsp; <span class="kw1">Dim</span> Rng <span class="kw1">As</span> Range<br />
&nbsp; &nbsp; <br />
&nbsp; &nbsp; <span class="kw1">With</span> ThisWorkbook.Sheets(&#8220;Sheet1?)<br />
&nbsp; &nbsp; &nbsp; &nbsp; <span class="kw1">Set</span> Rng = .Range(&#8220;A2?, .Range(&#8220;A2?).<span class="kw1">End</span>(xlDown))<br />
&nbsp; &nbsp; <span class="kw1">End</span> <span class="kw1">With</span><br />
&nbsp; &nbsp; <br />
&nbsp; &nbsp; <span class="kw1">For</span> <span class="kw1">Each</span> cell <span class="kw1">In</span> Rng.Cells<br />
&nbsp; &nbsp; &nbsp; &nbsp; <span class="kw1">With</span> Me.ListBox1<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; .AddItem cell.Value<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; .List(.ListCount &#8211; 1, 1) = cell.Offset(0, 1).Value<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; .List(.ListCount &#8211; 1, 2) = cell.Offset(0, 2).Value<br />
&nbsp; &nbsp; &nbsp; &nbsp; <span class="kw1">End</span> <span class="kw1">With</span><br />
&nbsp; &nbsp; <span class="kw1">Next</span> cell<br />
&nbsp; &nbsp; <br />
<span class="kw1">End</span> <span class="kw1">Sub</span></div>
</div>
]]></content:encoded>
	</item>
	<item>
		<title>By: cafeine</title>
		<link>http://www.dailydoseofexcel.com/archives/2004/05/10/populating-multi-column-listboxcombobox/#comment-58432</link>
		<dc:creator>cafeine</dc:creator>
		<pubDate>Thu, 03 Feb 2011 19:19:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=531#comment-58432</guid>
		<description>&lt;p&gt;Thanks for this,&lt;/p&gt;
&lt;p&gt;just a comment&lt;/p&gt;
&lt;p&gt;When you have&lt;/p&gt;
&lt;div style=&quot;overflow: auto; white-space: nowrap;&quot; class=&quot;codecolorer-container vb default&quot;&gt;&lt;div style=&quot;white-space: nowrap;&quot; class=&quot;vb codecolorer&quot;&gt;&lt;span class=&quot;kw1&quot;&gt;Dim&lt;/span&gt; Rng &lt;span class=&quot;kw1&quot;&gt;As&lt;/span&gt; Range&lt;/div&gt;&lt;/div&gt;
&lt;p&gt;don&#039;t forget before end sub&lt;/p&gt;
&lt;div style=&quot;overflow: auto; white-space: nowrap;&quot; class=&quot;codecolorer-container vb default&quot;&gt;&lt;div style=&quot;white-space: nowrap;&quot; class=&quot;vb codecolorer&quot;&gt;&lt;span class=&quot;kw1&quot;&gt;Set&lt;/span&gt; Rng = &lt;span class=&quot;kw1&quot;&gt;Nothing&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;
</description>
		<content:encoded><![CDATA[<p>Thanks for this,</p>
<p>just a comment</p>
<p>When you have</p>
<div style="overflow: auto; white-space: nowrap;" class="codecolorer-container vb default">
<div style="white-space: nowrap;" class="vb codecolorer"><span class="kw1">Dim</span> Rng <span class="kw1">As</span> Range</div>
</div>
<p>don&#8217;t forget before end sub</p>
<div style="overflow: auto; white-space: nowrap;" class="codecolorer-container vb default">
<div style="white-space: nowrap;" class="vb codecolorer"><span class="kw1">Set</span> Rng = <span class="kw1">Nothing</span></div>
</div>
]]></content:encoded>
	</item>
	<item>
		<title>By: Peter Williams</title>
		<link>http://www.dailydoseofexcel.com/archives/2004/05/10/populating-multi-column-listboxcombobox/#comment-54750</link>
		<dc:creator>Peter Williams</dc:creator>
		<pubDate>Fri, 26 Nov 2010 10:05:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=531#comment-54750</guid>
		<description>&lt;p&gt;Thanks Dick,&lt;/p&gt;
&lt;p&gt;I figured that must be the case but couldn&#039;t find any limitation anywhere and somewhere had seen  a reference to &#039;unlimited&#039; columns in a listbox.&lt;/p&gt;
&lt;p&gt;In practice there&#039;s usually some reasonably easy &#039;way round&#039;.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Thanks Dick,</p>
<p>I figured that must be the case but couldn&#8217;t find any limitation anywhere and somewhere had seen  a reference to &#8216;unlimited&#8217; columns in a listbox.</p>
<p>In practice there&#8217;s usually some reasonably easy &#8216;way round&#8217;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dick Kusleika</title>
		<link>http://www.dailydoseofexcel.com/archives/2004/05/10/populating-multi-column-listboxcombobox/#comment-54709</link>
		<dc:creator>Dick Kusleika</dc:creator>
		<pubDate>Thu, 25 Nov 2010 19:17:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=531#comment-54709</guid>
		<description>&lt;p&gt;There is a limit on the number of columns you can have in a listbox.   When I hit that limit, I end up combining two fields into one or putting two listboxes next to each other.  It&#039;s a pain.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>There is a limit on the number of columns you can have in a listbox.   When I hit that limit, I end up combining two fields into one or putting two listboxes next to each other.  It&#8217;s a pain.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Peter Williams</title>
		<link>http://www.dailydoseofexcel.com/archives/2004/05/10/populating-multi-column-listboxcombobox/#comment-54595</link>
		<dc:creator>Peter Williams</dc:creator>
		<pubDate>Wed, 24 Nov 2010 12:54:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=531#comment-54595</guid>
		<description>&lt;p&gt;Hi&lt;/p&gt;
&lt;p&gt;Feel like something is staring me in the face but I just can&#039;t get my routine to work properly. If I try to add an 11th column to my listbox.&lt;/p&gt;
&lt;p&gt;I get an error message stating that &quot;Error 380 Could not set the list property. Invalid property value&quot;&lt;br&gt;
This occurs after -  ListBox1.List(0, 9) = &quot;Value £s&quot;.  Any ideas anyone&lt;/p&gt;
&lt;div style=&quot;overflow: auto; white-space: nowrap;&quot; class=&quot;codecolorer-container text default&quot;&gt;&lt;div style=&quot;white-space: nowrap;&quot; class=&quot;text codecolorer&quot;&gt;Sub displaylistbox()&lt;br&gt;
Dim i1 As Integer, i2 As Integer&lt;br&gt;
&#160; &#160; ListBox1.Clear&lt;br&gt;
&#160; &#160; ListBox1.MultiSelect = fmMultiSelectSingle&lt;br&gt;
&#160; &#160; ListBox1.ColumnCount = 13&lt;br&gt;
&#160; &#160; ListBox1.ColumnWidths = &quot;4 cm;2 cm; 2.5 cm;1 cm;2.5 cm;2.5 cm;2.5 cm;2.5 cm;2.5 cm ;2.5 cm ;2.5 cm &quot;&lt;br&gt;
&#160; &#160; ListBox1.AddItem &quot;Name&quot;&lt;br&gt;
&#160; &#160; ListBox1.List(0, 1) = &quot;Post Code&quot;&lt;br&gt;
&#160; &#160; ListBox1.List(0, 2) = &quot;Lead Recd.&quot;&lt;br&gt;
&#160; &#160; ListBox1.List(0, 3) = &quot;wk #&quot;&lt;br&gt;
&#160; &#160; ListBox1.List(0, 4) = &quot;Status&quot;&lt;br&gt;
&#160; &#160; ListBox1.List(0, 5) = &quot;Date&quot;&lt;br&gt;
&#160; &#160; ListBox1.List(0, 6) = &quot;Tel&quot;&lt;br&gt;
&#160; &#160; ListBox1.List(0, 7) = &quot;Mobile&quot;&lt;br&gt;
&#160; &#160; ListBox1.List(0, 8) = &quot;Lead Code&quot;&lt;br&gt;
&#160; &#160; ListBox1.List(0, 9) = &quot;Value £s&quot;&lt;br&gt;
&#160; &#160; &#039;ListBox1.List(0, 10) = &quot;Points&quot;&lt;br&gt;
&#160; &#160; For i2 = 1 To my_dbase(0, 0)&lt;br&gt;
&#160; &#160; &#160; &#160; If my_dbase(i2, 0) = 1 Then&lt;br&gt;
&#160; &#160; &#160; &#160; &#160; &#160; i1 = ListBox1.ListCount - 1&lt;br&gt;
&#160; &#160; &#160; &#160; &#160; &#160; ListBox1.AddItem my_dbase(i2, 1)&lt;br&gt;
&#160; &#160; &#160; &#160; &#160; &#160; ListBox1.List(i1, 1) = my_dbase(i2, 5)&lt;br&gt;
&#160; &#160; &#160; &#160; &#160; &#160; ListBox1.List(i1, 2) = Format(my_dbase(i2, 9), &quot;ddd dd-mmm-yyyy&quot;)&lt;br&gt;
&#160; &#160; &#160; &#160; &#160; &#160; ListBox1.List(i1, 3) = my_dbase(i2, 10)&lt;br&gt;
&#160; &#160; &#160; &#160; &#160; &#160; ListBox1.List(i1, 4) = my_dbase(i2, 12)&lt;br&gt;
&#160; &#160; &#160; &#160; &#160; &#160; ListBox1.List(i1, 5) = Format(my_dbase(i2, 11), &quot;ddd dd-mmm-yyyy&quot;)&lt;br&gt;
&#160; &#160; &#160; &#160; &#160; &#160; ListBox1.List(i1, 6) = my_dbase(i2, 6)&lt;br&gt;
&#160; &#160; &#160; &#160; &#160; &#160; ListBox1.List(i1, 7) = my_dbase(i2, 7)&lt;br&gt;
&#160; &#160; &#160; &#160; &#160; &#160; ListBox1.List(i1, 8) = my_dbase(i2, 8)&lt;br&gt;
&#160; &#160; &#160; &#160; &#160; &#160; ListBox1.List(i1, 9) = my_dbase(i2, 13)&lt;br&gt;
&#160; &#160; &#160; &#160; &#160; &#160; &#039;ListBox1.List(i1, 10) = my_dbase(i2, 14)&lt;br&gt;
&#160; &#160; &#160; &#160; End If&lt;br&gt;
&#160; &#160; Next i2&lt;br&gt;
End Sub&lt;/div&gt;&lt;/div&gt;
</description>
		<content:encoded><![CDATA[<p>Hi</p>
<p>Feel like something is staring me in the face but I just can&#8217;t get my routine to work properly. If I try to add an 11th column to my listbox.</p>
<p>I get an error message stating that &#8220;Error 380 Could not set the list property. Invalid property value&#8221;<br />
This occurs after &#8211;  ListBox1.List(0, 9) = &#8220;Value £s&#8221;.  Any ideas anyone</p>
<div style="overflow: auto; white-space: nowrap;" class="codecolorer-container text default">
<div style="white-space: nowrap;" class="text codecolorer">Sub displaylistbox()<br />
Dim i1 As Integer, i2 As Integer<br />
&nbsp; &nbsp; ListBox1.Clear<br />
&nbsp; &nbsp; ListBox1.MultiSelect = fmMultiSelectSingle<br />
&nbsp; &nbsp; ListBox1.ColumnCount = 13<br />
&nbsp; &nbsp; ListBox1.ColumnWidths = &#8220;4 cm;2 cm; 2.5 cm;1 cm;2.5 cm;2.5 cm;2.5 cm;2.5 cm;2.5 cm ;2.5 cm ;2.5 cm &#8220;<br />
&nbsp; &nbsp; ListBox1.AddItem &#8220;Name&#8221;<br />
&nbsp; &nbsp; ListBox1.List(0, 1) = &#8220;Post Code&#8221;<br />
&nbsp; &nbsp; ListBox1.List(0, 2) = &#8220;Lead Recd.&#8221;<br />
&nbsp; &nbsp; ListBox1.List(0, 3) = &#8220;wk #&#8221;<br />
&nbsp; &nbsp; ListBox1.List(0, 4) = &#8220;Status&#8221;<br />
&nbsp; &nbsp; ListBox1.List(0, 5) = &#8220;Date&#8221;<br />
&nbsp; &nbsp; ListBox1.List(0, 6) = &#8220;Tel&#8221;<br />
&nbsp; &nbsp; ListBox1.List(0, 7) = &#8220;Mobile&#8221;<br />
&nbsp; &nbsp; ListBox1.List(0, <img src='http://www.dailydoseofexcel.com/wp-includes/images/smilies/icon_cool.gif' alt='8)' class='wp-smiley' /> = &#8220;Lead Code&#8221;<br />
&nbsp; &nbsp; ListBox1.List(0, 9) = &#8220;Value £s&#8221;<br />
&nbsp; &nbsp; &#8216;ListBox1.List(0, 10) = &#8220;Points&#8221;<br />
&nbsp; &nbsp; For i2 = 1 To my_dbase(0, 0)<br />
&nbsp; &nbsp; &nbsp; &nbsp; If my_dbase(i2, 0) = 1 Then<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; i1 = ListBox1.ListCount &#8211; 1<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ListBox1.AddItem my_dbase(i2, 1)<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ListBox1.List(i1, 1) = my_dbase(i2, 5)<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ListBox1.List(i1, 2) = Format(my_dbase(i2, 9), &#8220;ddd dd-mmm-yyyy&#8221;)<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ListBox1.List(i1, 3) = my_dbase(i2, 10)<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ListBox1.List(i1, 4) = my_dbase(i2, 12)<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ListBox1.List(i1, 5) = Format(my_dbase(i2, 11), &#8220;ddd dd-mmm-yyyy&#8221;)<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ListBox1.List(i1, 6) = my_dbase(i2, 6)<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ListBox1.List(i1, 7) = my_dbase(i2, 7)<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ListBox1.List(i1, <img src='http://www.dailydoseofexcel.com/wp-includes/images/smilies/icon_cool.gif' alt='8)' class='wp-smiley' /> = my_dbase(i2, <img src='http://www.dailydoseofexcel.com/wp-includes/images/smilies/icon_cool.gif' alt='8)' class='wp-smiley' /> <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ListBox1.List(i1, 9) = my_dbase(i2, 13)<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &#8216;ListBox1.List(i1, 10) = my_dbase(i2, 14)<br />
&nbsp; &nbsp; &nbsp; &nbsp; End If<br />
&nbsp; &nbsp; Next i2<br />
End Sub</div>
</div>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bill Benson</title>
		<link>http://www.dailydoseofexcel.com/archives/2004/05/10/populating-multi-column-listboxcombobox/#comment-54547</link>
		<dc:creator>Bill Benson</dc:creator>
		<pubDate>Tue, 23 Nov 2010 21:36:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=531#comment-54547</guid>
		<description>&lt;p&gt;I am glad there are a combination of methods here because I found that I really needed more than one method. I had a series of listboxes each with one less item than the others (process of eliminating the selected item from predecessor listbox, before putting remaining items in the next listbox, and so on)... but by the time I got to the last listbox I could not add 2 columns as an array using the list property. I tried every variation on this. ultimately I gave up and when ubound(MyArray,2) = 1 (i.e., which happened only on the last listbox which had but one choice to offer - I know, a dumb interface) I used .AddItem instead and the .List property for the other columns. Thanks to everyone here!&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>I am glad there are a combination of methods here because I found that I really needed more than one method. I had a series of listboxes each with one less item than the others (process of eliminating the selected item from predecessor listbox, before putting remaining items in the next listbox, and so on)&#8230; but by the time I got to the last listbox I could not add 2 columns as an array using the list property. I tried every variation on this. ultimately I gave up and when ubound(MyArray,2) = 1 (i.e., which happened only on the last listbox which had but one choice to offer &#8211; I know, a dumb interface) I used .AddItem instead and the .List property for the other columns. Thanks to everyone here!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Richard</title>
		<link>http://www.dailydoseofexcel.com/archives/2004/05/10/populating-multi-column-listboxcombobox/#comment-44406</link>
		<dc:creator>Richard</dc:creator>
		<pubDate>Mon, 08 Mar 2010 17:33:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=531#comment-44406</guid>
		<description>&lt;p&gt;Please help,&lt;/p&gt;
&lt;p&gt;I am trying to populate a 4 column list box with a large amount of data from a seperate sheet (&quot;Portfolio&quot;), ideally I would like the list box to keep cylcling through the main list until it reaches the end (blank line) then enter the cell values into the list box accordingly.&lt;/p&gt;
&lt;p&gt;Just cant figure it out so any help would be much appreciated!!&lt;/p&gt;
&lt;p&gt;Thanks in advance&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Please help,</p>
<p>I am trying to populate a 4 column list box with a large amount of data from a seperate sheet (&#8220;Portfolio&#8221;), ideally I would like the list box to keep cylcling through the main list until it reaches the end (blank line) then enter the cell values into the list box accordingly.</p>
<p>Just cant figure it out so any help would be much appreciated!!</p>
<p>Thanks in advance</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jamey</title>
		<link>http://www.dailydoseofexcel.com/archives/2004/05/10/populating-multi-column-listboxcombobox/#comment-44280</link>
		<dc:creator>Jamey</dc:creator>
		<pubDate>Mon, 01 Mar 2010 15:36:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=531#comment-44280</guid>
		<description>&lt;p&gt;I&#039;m struggling with some VBA code/logic (I am a bit of a newbie) to do the following:&lt;/p&gt;
&lt;p&gt;1/  Use the value selected from one listbox to limit the values displayed in another list box (similar to how a filter would limit the display of rows to only those having the first selected value)&lt;br&gt;
2/  The 2nd listbox needs to have its items added dynamically based upon the item selected from the 1st listbox&lt;br&gt;
3/  The 2nd list box should only add unique items ... no duplicates in the list of items in the 2nd list box&lt;/p&gt;
&lt;p&gt;I need this logic to apply to 4 list boxes in total such that the items in listbox 2 are limited by the value selected in listbox one and the items in listbox 3 are limited by the value selected in listbox 2 and, finally, the items in listbox 4 are limited by the value selected in listbox 3.&lt;/p&gt;
&lt;p&gt;All list boxes are sitting in cells of a spreadsheet ... not in a userform.&lt;/p&gt;
&lt;p&gt;Any advice/code most appreciated!  Thanks!&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>I&#8217;m struggling with some VBA code/logic (I am a bit of a newbie) to do the following:</p>
<p>1/  Use the value selected from one listbox to limit the values displayed in another list box (similar to how a filter would limit the display of rows to only those having the first selected value)<br />
2/  The 2nd listbox needs to have its items added dynamically based upon the item selected from the 1st listbox<br />
3/  The 2nd list box should only add unique items &#8230; no duplicates in the list of items in the 2nd list box</p>
<p>I need this logic to apply to 4 list boxes in total such that the items in listbox 2 are limited by the value selected in listbox one and the items in listbox 3 are limited by the value selected in listbox 2 and, finally, the items in listbox 4 are limited by the value selected in listbox 3.</p>
<p>All list boxes are sitting in cells of a spreadsheet &#8230; not in a userform.</p>
<p>Any advice/code most appreciated!  Thanks!</p>
]]></content:encoded>
	</item>
</channel>
</rss>

