<?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: The String Function</title>
	<atom:link href="http://www.dailydoseofexcel.com/archives/2004/12/02/the-string-function/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.dailydoseofexcel.com/archives/2004/12/02/the-string-function/</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: Dick Kusleika</title>
		<link>http://www.dailydoseofexcel.com/archives/2004/12/02/the-string-function/#comment-19575</link>
		<dc:creator>Dick Kusleika</dc:creator>
		<pubDate>Mon, 01 May 2006 03:02:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=901#comment-19575</guid>
		<description>&lt;p&gt;Good point Randy.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Good point Randy.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Randy Harmelink</title>
		<link>http://www.dailydoseofexcel.com/archives/2004/12/02/the-string-function/#comment-19572</link>
		<dc:creator>Randy Harmelink</dc:creator>
		<pubDate>Fri, 28 Apr 2006 06:03:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=901#comment-19572</guid>
		<description>&lt;p&gt;Just a clarification -- the function doesn&#039;t repeat a STRING, just a single character.  If you give it a multi-character string as the second parameter, it just repeats the first character of the string.&lt;/p&gt;
&lt;p&gt;For example:&lt;/p&gt;
&lt;p&gt;    STRING(3, &quot;Hello&quot;)&lt;/p&gt;
&lt;p&gt;...returns:&lt;/p&gt;
&lt;p&gt;    HHH&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Just a clarification &#8212; the function doesn&#8217;t repeat a STRING, just a single character.  If you give it a multi-character string as the second parameter, it just repeats the first character of the string.</p>
<p>For example:</p>
<p>    STRING(3, &#8220;Hello&#8221;)</p>
<p>&#8230;returns:</p>
<p>    HHH</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ben</title>
		<link>http://www.dailydoseofexcel.com/archives/2004/12/02/the-string-function/#comment-2785</link>
		<dc:creator>Ben</dc:creator>
		<pubDate>Fri, 03 Dec 2004 17:34:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=901#comment-2785</guid>
		<description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;very interesting - but why don&#039;t you use the Space$()-Function?&lt;/p&gt;
&lt;p&gt;Have a nice day, Ben.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>very interesting &#8211; but why don&#8217;t you use the Space$()-Function?</p>
<p>Have a nice day, Ben.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: J.E. McGimpsey</title>
		<link>http://www.dailydoseofexcel.com/archives/2004/12/02/the-string-function/#comment-2771</link>
		<dc:creator>J.E. McGimpsey</dc:creator>
		<pubDate>Fri, 03 Dec 2004 03:19:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=901#comment-2771</guid>
		<description>&lt;p&gt;&lt;em&gt;re: sText = sText &amp; Range(&quot;A1?).Value &amp; String(30-Len(Range(&quot;A1?).Value), &quot; &quot;)&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;You can eliminate a math operation and a reference resolution:&lt;/p&gt;
&lt;p&gt;sText = Left(sText &amp; Range(&quot;A1?).Value &amp; String(30, &quot; &quot;), 30)&lt;/p&gt;
&lt;p&gt;or, in XL:&lt;/p&gt;
&lt;p&gt;   =RIGHT(REPT(&quot;0?,7)&amp;A1,7)&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p><em>re: sText = sText &amp; Range(&#8220;A1?).Value &amp; String(30-Len(Range(&#8220;A1?).Value), &#8221; &#8220;)</em></p>
<p>You can eliminate a math operation and a reference resolution:</p>
<p>sText = Left(sText &amp; Range(&#8220;A1?).Value &amp; String(30, &#8221; &#8220;), 30)</p>
<p>or, in XL:</p>
<p>   =RIGHT(REPT(&#8220;0?,7)&amp;A1,7)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Matthew Cobbs</title>
		<link>http://www.dailydoseofexcel.com/archives/2004/12/02/the-string-function/#comment-2762</link>
		<dc:creator>Matthew Cobbs</dc:creator>
		<pubDate>Thu, 02 Dec 2004 18:36:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=901#comment-2762</guid>
		<description>&lt;p&gt;REPT() is the Excel worksheet corollary to this function. I use it often to pad out item codes. For example, if the codes must be 7-characters long, I use:&lt;/p&gt;
&lt;p&gt;=REPT(&quot;0?,7-LEN(A1))&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>REPT() is the Excel worksheet corollary to this function. I use it often to pad out item codes. For example, if the codes must be 7-characters long, I use:</p>
<p>=REPT(&#8220;0?,7-LEN(A1))</p>
]]></content:encoded>
	</item>
</channel>
</rss>

