<?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: Column Validation in SharePoint 2010</title>
	<atom:link href="http://www.mstechblogs.com/sharepoint/column-validation-in-sharepoint-2010/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.mstechblogs.com/sharepoint/en/column-validation-in-sharepoint-2010/</link>
	<description></description>
	<lastbuilddate>Tue, 31 Jan 2012 18:12:19 +0000</lastbuilddate>
	<sy:updateperiod>hourly</sy:updateperiod>
	<sy:updatefrequency>1</sy:updatefrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: ccyborg</title>
		<link>http://www.mstechblogs.com/sharepoint/en/column-validation-in-sharepoint-2010/comment-page-1/#comment-41340</link>
		<dc:creator>ccyborg</dc:creator>
		<pubdate>Tue, 15 Nov 2011 08:56:54 +0000</pubdate>
		<guid ispermalink="false">http://www.mstechblogs.com/sharepoint/column-validation-in-sharepoint-2010/#comment-41340-en</guid>
		<description>ce genre de formule n&#039;est pas pris en compte par sharepoint 2010 :

=AND(TRIM([BadgeOwnerFullName])=&quot;&quot;,TRIM([BadgeOwnerAccount])=&quot;&quot;)

dommage...</description>
		<content:encoded><![CDATA[<span lang ="fr"><p>ce genre de formule n&#8217;est pas pris en compte par sharepoint 2010 :</p>
<p>=AND(TRIM([BadgeOwnerFullName])=&#8221;",TRIM([BadgeOwnerAccount])=&#8221;")</p>
<p>dommage&#8230;</p>
</span>]]></content:encoded>
	</item>
	<item>
		<title>By: SPsidd</title>
		<link>http://www.mstechblogs.com/sharepoint/en/column-validation-in-sharepoint-2010/comment-page-1/#comment-9726</link>
		<dc:creator>SPsidd</dc:creator>
		<pubdate>Sat, 01 Jan 2011 12:56:45 +0000</pubdate>
		<guid ispermalink="false">http://www.mstechblogs.com/sharepoint/column-validation-in-sharepoint-2010/#comment-9726-en</guid>
		<description>I&#039;m trying to use a Single line of text field with column validation to allow users to just type text into the column.  The problem is that I can&#039;t figure out how to allow multiple entries into the column.  

I have a validation formula that allows users to enter a single value such as &quot;TC-12345&quot; but how can I adjust the formula below to allow a user to enter something like &quot;TC-12345; TC-23456; TC-34567&quot; as well? Need to allow users to enter up to 20 separate values.  My existing formula is below. Kindly suggesst what change i should do to achive my goal. 

=IF(LEN([4M_Delete Type])&lt;8,
FALSE,
IF(LEN([4M_Delete Type])=8,
IF(LEFT([4M_Delete Type],3)=&quot;TC-&quot;,
IF(ISNUMBER(VALUE(RIGHT([4M_Delete Type],5))),
IF(LEN(RIGHT([4M_Delete Type],5)=5),
TRUE,
FALSE),
FALSE),
FALSE),
FALSE))</description>
		<content:encoded><![CDATA[<p>I&#8217;m trying to use a Single line of text field with column validation to allow users to just type text into the column.  The problem is that I can&#8217;t figure out how to allow multiple entries into the column.  </p>
<p>I have a validation formula that allows users to enter a single value such as &#8220;TC-12345&#8243; but how can I adjust the formula below to allow a user to enter something like &#8220;TC-12345; TC-23456; TC-34567&#8243; as well? Need to allow users to enter up to 20 separate values.  My existing formula is below. Kindly suggesst what change i should do to achive my goal. </p>
<p>=IF(LEN([4M_Delete Type])&lt;8,<br />
FALSE,<br />
IF(LEN([4M_Delete Type])=8,<br />
IF(LEFT([4M_Delete Type],3)=&quot;TC-&quot;,<br />
IF(ISNUMBER(VALUE(RIGHT([4M_Delete Type],5))),<br />
IF(LEN(RIGHT([4M_Delete Type],5)=5),<br />
TRUE,<br />
FALSE),<br />
FALSE),<br />
FALSE),<br />
FALSE))</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rao</title>
		<link>http://www.mstechblogs.com/sharepoint/en/column-validation-in-sharepoint-2010/comment-page-1/#comment-7377</link>
		<dc:creator>Rao</dc:creator>
		<pubdate>Mon, 29 Nov 2010 10:40:17 +0000</pubdate>
		<guid ispermalink="false">http://www.mstechblogs.com/sharepoint/column-validation-in-sharepoint-2010/#comment-7377-en</guid>
		<description>Good Stuff.

I need to check it for e-mail validation. Can you please suggest me on this ?

Thanks,
Rao.</description>
		<content:encoded><![CDATA[<p>Good Stuff.</p>
<p>I need to check it for e-mail validation. Can you please suggest me on this ?</p>
<p>Thanks,<br />
Rao.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: veenar</title>
		<link>http://www.mstechblogs.com/sharepoint/en/column-validation-in-sharepoint-2010/comment-page-1/#comment-2199</link>
		<dc:creator>veenar</dc:creator>
		<pubdate>Tue, 04 May 2010 15:45:08 +0000</pubdate>
		<guid ispermalink="false">http://www.mstechblogs.com/sharepoint/column-validation-in-sharepoint-2010/#comment-2199-en</guid>
		<description>Can we compare more than 2 conditons eg;
If the textbox values can either be &quot;NewYork&quot; or &quot;Washington&quot; then how the formula must be.</description>
		<content:encoded><![CDATA[<p>Can we compare more than 2 conditons eg;<br />
If the textbox values can either be &#8220;NewYork&#8221; or &#8220;Washington&#8221; then how the formula must be.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: List level Validation in SharePoint 2010 : Microsoft SharePoint</title>
		<link>http://www.mstechblogs.com/sharepoint/en/column-validation-in-sharepoint-2010/comment-page-1/#comment-1649</link>
		<dc:creator>List level Validation in SharePoint 2010 : Microsoft SharePoint</dc:creator>
		<pubdate>Mon, 11 Jan 2010 21:26:35 +0000</pubdate>
		<guid ispermalink="false">http://www.mstechblogs.com/sharepoint/column-validation-in-sharepoint-2010/#comment-1649-en</guid>
		<description>[...] In my earlier article, I wrote about column level validation in SharePoint 2010. [...]</description>
		<content:encoded><![CDATA[<p>[...] In my earlier article, I wrote about column level validation in SharePoint 2010. [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>

