<?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: Data Non-Validation</title>
	<atom:link href="http://www.dailydoseofexcel.com/archives/2004/08/17/data-non-validation/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.dailydoseofexcel.com/archives/2004/08/17/data-non-validation/</link>
	<description>Daily posts of Excel tips…and other stuff</description>
	<lastBuildDate>Wed, 08 Feb 2012 23:58:05 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: Srinivas</title>
		<link>http://www.dailydoseofexcel.com/archives/2004/08/17/data-non-validation/#comment-20899</link>
		<dc:creator>Srinivas</dc:creator>
		<pubDate>Wed, 13 Sep 2006 16:10:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=724#comment-20899</guid>
		<description>&lt;p&gt;Hi&lt;br&gt;
I am using Excel 2003 SP2. When I use macros to set the value on a cell having data validation, I get an error.&lt;br&gt;
My cell has two possible values Pass, Fail and I try to set the value of the cell using:&lt;br&gt;
Range. Cell(1,1).Value = a string thats either &quot;Pass&quot; or &quot;Fail&quot;&lt;br&gt;
Can someone please help?&lt;br&gt;
Thanks&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Hi<br />
I am using Excel 2003 SP2. When I use macros to set the value on a cell having data validation, I get an error.<br />
My cell has two possible values Pass, Fail and I try to set the value of the cell using:<br />
Range. Cell(1,1).Value = a string thats either &#8220;Pass&#8221; or &#8220;Fail&#8221;<br />
Can someone please help?<br />
Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: John Wells</title>
		<link>http://www.dailydoseofexcel.com/archives/2004/08/17/data-non-validation/#comment-18551</link>
		<dc:creator>John Wells</dc:creator>
		<pubDate>Fri, 03 Feb 2006 16:46:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=724#comment-18551</guid>
		<description>&lt;p&gt;I also have a similar problem.&lt;/p&gt;
&lt;p&gt;Excel 2003 will not allow you to use validation across different workbooks.&lt;/p&gt;
&lt;p&gt;Is there an easy way to create a drop down list (error checking is optional)? Or is a VBA the only way.&lt;/p&gt;
&lt;p&gt;If VBA, what is the code?&lt;/p&gt;
&lt;p&gt;Any help someone could provide would be great.&lt;/p&gt;
&lt;p&gt;Thanks.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>I also have a similar problem.</p>
<p>Excel 2003 will not allow you to use validation across different workbooks.</p>
<p>Is there an easy way to create a drop down list (error checking is optional)? Or is a VBA the only way.</p>
<p>If VBA, what is the code?</p>
<p>Any help someone could provide would be great.</p>
<p>Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: KAMAL KATAHAR</title>
		<link>http://www.dailydoseofexcel.com/archives/2004/08/17/data-non-validation/#comment-16344</link>
		<dc:creator>KAMAL KATAHAR</dc:creator>
		<pubDate>Tue, 27 Sep 2005 14:43:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=724#comment-16344</guid>
		<description>&lt;p&gt;i have a list of 900 names in one workbook (not a worksheet). I want the selection list of only persons whose names started with &#039;A&#039; or any selection criteria in data validation.&lt;/p&gt;
&lt;p&gt;or&lt;/p&gt;
&lt;p&gt;any other method you prefer&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>i have a list of 900 names in one workbook (not a worksheet). I want the selection list of only persons whose names started with &#8216;A&#8217; or any selection criteria in data validation.</p>
<p>or</p>
<p>any other method you prefer</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Scott Porter</title>
		<link>http://www.dailydoseofexcel.com/archives/2004/08/17/data-non-validation/#comment-11351</link>
		<dc:creator>Scott Porter</dc:creator>
		<pubDate>Sat, 23 Apr 2005 23:54:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=724#comment-11351</guid>
		<description>&lt;p&gt;You&#039;re telling me! I&#039;ve been pulling my hair out for dyas! :)&lt;/p&gt;
&lt;p&gt;Had a look at the site. That&#039;s not quite what I&#039;m trying to do (I can manage that much - just).&lt;/p&gt;
&lt;p&gt;Basically, what I think I need to do, is the equivalent of a set/sql SUBTRACT operation on 2 dynamic ranges. (I have no idea if this is even possible in excel)&lt;/p&gt;
&lt;p&gt;{items in list1} - {items in list2}, where list 1 items are in the drop-down list.&lt;/p&gt;
&lt;p&gt;I already know that list1 items are unique, and list2 will obviously contain all the items I have selected, and I just need to remove these from my dynamic range list1.&lt;/p&gt;
&lt;p&gt;I&#039;m starting to lean towards doing this using vba to recreate the named range using onValChange etc, something like:&lt;/p&gt;
&lt;p&gt;for each x in list1, add x  to myArray...&lt;br&gt;
for each y in list2, if y in myArray, remove y...&lt;br&gt;
define list 3 = myArray(1), myarray(2),...&lt;/p&gt;
&lt;p&gt;You get the idea (I hope), desite my shady vb skills. :D&lt;/p&gt;
&lt;p&gt;Scott&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>You&#8217;re telling me! I&#8217;ve been pulling my hair out for dyas! <img src='http://www.dailydoseofexcel.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Had a look at the site. That&#8217;s not quite what I&#8217;m trying to do (I can manage that much &#8211; just).</p>
<p>Basically, what I think I need to do, is the equivalent of a set/sql SUBTRACT operation on 2 dynamic ranges. (I have no idea if this is even possible in excel)</p>
<p>{items in list1} &#8211; {items in list2}, where list 1 items are in the drop-down list.</p>
<p>I already know that list1 items are unique, and list2 will obviously contain all the items I have selected, and I just need to remove these from my dynamic range list1.</p>
<p>I&#8217;m starting to lean towards doing this using vba to recreate the named range using onValChange etc, something like:</p>
<p>for each x in list1, add x  to myArray&#8230;<br />
for each y in list2, if y in myArray, remove y&#8230;<br />
define list 3 = myArray(1), myarray(2),&#8230;</p>
<p>You get the idea (I hope), desite my shady vb skills. <img src='http://www.dailydoseofexcel.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
<p>Scott</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rob van Gelder</title>
		<link>http://www.dailydoseofexcel.com/archives/2004/08/17/data-non-validation/#comment-11350</link>
		<dc:creator>Rob van Gelder</dc:creator>
		<pubDate>Sat, 23 Apr 2005 22:22:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=724#comment-11350</guid>
		<description>&lt;p&gt;Scott,&lt;/p&gt;
&lt;p&gt;It&#039;s easy to prevent duplicate entries. That&#039;s just a data validation tickbox.&lt;br&gt;
But to provide the user with a dropdown of just unique entries... no easy task without helper columns.&lt;/p&gt;
&lt;p&gt;An example is here:&lt;br&gt;
&lt;a href=&quot;http://www.contextures.com/excelfiles.html#Function&quot; rel=&quot;nofollow&quot;&gt;Contextures Sample Excel Spreadsheets&lt;/a&gt; - &quot;Extract List of Unique Items&quot;&lt;/p&gt;
&lt;p&gt;Cheers,&lt;br&gt;
Rob&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Scott,</p>
<p>It&#8217;s easy to prevent duplicate entries. That&#8217;s just a data validation tickbox.<br />
But to provide the user with a dropdown of just unique entries&#8230; no easy task without helper columns.</p>
<p>An example is here:<br />
<a href="http://www.contextures.com/excelfiles.html#Function" rel="nofollow">Contextures Sample Excel Spreadsheets</a> &#8211; &#8220;Extract List of Unique Items&#8221;</p>
<p>Cheers,<br />
Rob</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Scott Porter</title>
		<link>http://www.dailydoseofexcel.com/archives/2004/08/17/data-non-validation/#comment-11348</link>
		<dc:creator>Scott Porter</dc:creator>
		<pubDate>Sat, 23 Apr 2005 11:30:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=724#comment-11348</guid>
		<description>&lt;p&gt;Interesting article, I had wondered how to do that, and in particular, add new items to the list (a quick dynamic range in the listsource should solve that).&lt;/p&gt;
&lt;p&gt;I have a wee puzzle for you, if your interested;&lt;/p&gt;
&lt;p&gt;I have a column (Sheet2!F7:F50) with the following data validation list source, which basically allows users to select one of the values from another worksheet (PCOCol = Sheet1!A6:A106).&lt;/p&gt;
&lt;p&gt;=OFFSET(PCOCol,0,0,COUNTA(PCOCol),1)&lt;/p&gt;
&lt;p&gt;This works ok, but I want to weed out values that have already been used, eg if the list is {&quot;Apple&quot;,&quot;Banana&quot;, &quot;Pear&quot;}, and I select &quot;Apple&quot; in cell F7, I want the list to change to {&quot;Banana&quot;, &quot;Pear&quot;} so I can&#039;t have 2 &quot;Apple&quot;s.&lt;/p&gt;
&lt;p&gt;Thanks in advance. :)&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Interesting article, I had wondered how to do that, and in particular, add new items to the list (a quick dynamic range in the listsource should solve that).</p>
<p>I have a wee puzzle for you, if your interested;</p>
<p>I have a column (Sheet2!F7:F50) with the following data validation list source, which basically allows users to select one of the values from another worksheet (PCOCol = Sheet1!A6:A106).</p>
<p>=OFFSET(PCOCol,0,0,COUNTA(PCOCol),1)</p>
<p>This works ok, but I want to weed out values that have already been used, eg if the list is {&#8220;Apple&#8221;,&#8221;Banana&#8221;, &#8220;Pear&#8221;}, and I select &#8220;Apple&#8221; in cell F7, I want the list to change to {&#8220;Banana&#8221;, &#8220;Pear&#8221;} so I can&#8217;t have 2 &#8220;Apple&#8221;s.</p>
<p>Thanks in advance. <img src='http://www.dailydoseofexcel.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Charlie III</title>
		<link>http://www.dailydoseofexcel.com/archives/2004/08/17/data-non-validation/#comment-2189</link>
		<dc:creator>Charlie III</dc:creator>
		<pubDate>Sun, 22 Aug 2004 16:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=724#comment-2189</guid>
		<description>&lt;p&gt;This is a great tool.  I have recently used this tool with the SUBTOTAL function to sum a list or give me an average of the list.  Select SUM from the dropdown. SUBTOTAL is linked to this cell and does a VLOOKUP of Sum to find the number 9 then sums the cells.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>This is a great tool.  I have recently used this tool with the SUBTOTAL function to sum a list or give me an average of the list.  Select SUM from the dropdown. SUBTOTAL is linked to this cell and does a VLOOKUP of Sum to find the number 9 then sums the cells.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dennis Mercadal</title>
		<link>http://www.dailydoseofexcel.com/archives/2004/08/17/data-non-validation/#comment-2188</link>
		<dc:creator>Dennis Mercadal</dc:creator>
		<pubDate>Wed, 18 Aug 2004 13:37:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=724#comment-2188</guid>
		<description>&lt;p&gt;8/18/04&lt;/p&gt;
&lt;p&gt;Dick:&lt;/p&gt;
&lt;p&gt;I greatly enjoy your website.  Keep up the excellent work.&lt;/p&gt;
&lt;p&gt;In your recent article using Data Validation, you talked about using Data Validation to obtain a list to choose from. If you have a list in place, why not right click the empty cell at the bottom of the column and choose pick from list?&lt;/p&gt;
&lt;p&gt;Thanks&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>8/18/04</p>
<p>Dick:</p>
<p>I greatly enjoy your website.  Keep up the excellent work.</p>
<p>In your recent article using Data Validation, you talked about using Data Validation to obtain a list to choose from. If you have a list in place, why not right click the empty cell at the bottom of the column and choose pick from list?</p>
<p>Thanks</p>
]]></content:encoded>
	</item>
</channel>
</rss>

