<?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 Excel Word Challenge</title>
	<atom:link href="http://www.dailydoseofexcel.com/archives/2004/04/09/the-excel-word-challenge/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.dailydoseofexcel.com/archives/2004/04/09/the-excel-word-challenge/</link>
	<description>Daily posts of Excel tips…and other stuff</description>
	<lastBuildDate>Mon, 06 Feb 2012 18:39:56 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: Simon</title>
		<link>http://www.dailydoseofexcel.com/archives/2004/04/09/the-excel-word-challenge/#comment-28023</link>
		<dc:creator>Simon</dc:creator>
		<pubDate>Fri, 12 Oct 2007 13:27:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=455#comment-28023</guid>
		<description>&lt;p&gt;Let&#039;s get this started again with Excel 2007. Sixteen-thousand three-hundred and eighty-four columns! Woo hoo!&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Let&#8217;s get this started again with Excel 2007. Sixteen-thousand three-hundred and eighty-four columns! Woo hoo!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Charlene</title>
		<link>http://www.dailydoseofexcel.com/archives/2004/04/09/the-excel-word-challenge/#comment-16893</link>
		<dc:creator>Charlene</dc:creator>
		<pubDate>Mon, 17 Oct 2005 16:09:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=455#comment-16893</guid>
		<description>&lt;p&gt;Of course, (workWord &quot;&quot;) and (How &quot;&quot;) should be (hope it works this way) (workWord &amp;lt&amp;gt &quot;&quot;) and (How &amp;lt&amp;gt &quot;&quot;), respectively.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Of course, (workWord &#8220;&#8221;) and (How &#8220;&#8221;) should be (hope it works this way) (workWord &amp;lt&amp;gt &#8220;&#8221;) and (How &amp;lt&amp;gt &#8220;&#8221;), respectively.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Charlene</title>
		<link>http://www.dailydoseofexcel.com/archives/2004/04/09/the-excel-word-challenge/#comment-16894</link>
		<dc:creator>Charlene</dc:creator>
		<pubDate>Mon, 17 Oct 2005 16:09:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=455#comment-16894</guid>
		<description>&lt;p&gt;:( Well, I think you get the idea anyway.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p> <img src='http://www.dailydoseofexcel.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' />  Well, I think you get the idea anyway.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Charlene</title>
		<link>http://www.dailydoseofexcel.com/archives/2004/04/09/the-excel-word-challenge/#comment-16884</link>
		<dc:creator>Charlene</dc:creator>
		<pubDate>Mon, 17 Oct 2005 09:44:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=455#comment-16884</guid>
		<description>&lt;p&gt;Hi All,&lt;/p&gt;
&lt;p&gt;Here&#039;s my function to do the test.  The cool thing is, instead of just a Boolean, it returns a string showing which columns to use, or &quot;&quot; if the combination isn&#039;t possible.  With no recursion, no references needed, and it only has 14 lines of non-blank code in the body!&lt;/p&gt;
&lt;p&gt;=====&lt;br&gt;
Function ColSpellPoss(ByVal oneWord As String) As String&lt;/p&gt;
&lt;p&gt;  workWord = oneWord&lt;/p&gt;
&lt;p&gt;  For ColNum = 256 To 1 Step -1&lt;br&gt;
    ColAddr = Columns(ColNum).Address(False, False)&lt;br&gt;
    ColName = Left(ColAddr, InStr(ColAddr, &quot;:&quot;) - 1)&lt;br&gt;
    If ((Len(workWord) &gt; 1) And (Right(workWord, 2) = ColName)) Then&lt;br&gt;
      workWord = Left(workWord, Len(workWord) - 2)&lt;br&gt;
      How = ColName + &quot; &quot; + How&lt;br&gt;
    ElseIf (Right(workWord, 1) = ColName) Then&lt;br&gt;
      workWord = Left(workWord, Len(workWord) - 1)&lt;br&gt;
      How = ColName + &quot; &quot; + How&lt;br&gt;
    End If&lt;br&gt;
  Next ColNum&lt;/p&gt;
&lt;p&gt;  If (workWord  &quot;&quot;) Then How = &quot;&quot;&lt;br&gt;
  ColSpellPoss = Trim(How)&lt;/p&gt;
&lt;p&gt;End Function&lt;br&gt;
=====&lt;/p&gt;
&lt;p&gt;I set this up with a &quot;Check&quot; button in cell B2 with the following assigned macro.&lt;/p&gt;
&lt;p&gt;=====&lt;br&gt;
Sub CheckWord()&lt;/p&gt;
&lt;p&gt;  &#039; Where are the important items?&lt;br&gt;
  WordSheet = &quot;Sheet2?&lt;br&gt;
  WordCell = &quot;C2?&lt;/p&gt;
&lt;p&gt;  &#039; Get the word&lt;br&gt;
  oneWord = UCase(Trim(Worksheets(WordSheet).Range(WordCell).Text))&lt;/p&gt;
&lt;p&gt;  &#039; Check the word&lt;br&gt;
  How = ColSpellPoss(oneWord)&lt;/p&gt;
&lt;p&gt;  &#039; Report results&lt;br&gt;
  If (How  &quot;&quot;) Then&lt;br&gt;
    MsgBox How, , &quot;Possible&quot;&lt;br&gt;
  Else&lt;br&gt;
    MsgBox &quot;Not Possible&quot;, , &quot;Not Possible&quot;&lt;br&gt;
  End If&lt;/p&gt;
&lt;p&gt;End Sub&lt;br&gt;
=====&lt;/p&gt;
&lt;p&gt;Charlene&lt;br&gt;
charmtg at yahoo dot com&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Hi All,</p>
<p>Here&#8217;s my function to do the test.  The cool thing is, instead of just a Boolean, it returns a string showing which columns to use, or &#8220;&#8221; if the combination isn&#8217;t possible.  With no recursion, no references needed, and it only has 14 lines of non-blank code in the body!</p>
<p>=====<br />
Function ColSpellPoss(ByVal oneWord As String) As String</p>
<p>  workWord = oneWord</p>
<p>  For ColNum = 256 To 1 Step -1<br />
    ColAddr = Columns(ColNum).Address(False, False)<br />
    ColName = Left(ColAddr, InStr(ColAddr, &#8220;:&#8221;) &#8211; 1)<br />
    If ((Len(workWord) &gt; 1) And (Right(workWord, 2) = ColName)) Then<br />
      workWord = Left(workWord, Len(workWord) &#8211; 2)<br />
      How = ColName + &#8221; &#8221; + How<br />
    ElseIf (Right(workWord, 1) = ColName) Then<br />
      workWord = Left(workWord, Len(workWord) &#8211; 1)<br />
      How = ColName + &#8221; &#8221; + How<br />
    End If<br />
  Next ColNum</p>
<p>  If (workWord  &#8220;&#8221;) Then How = &#8220;&#8221;<br />
  ColSpellPoss = Trim(How)</p>
<p>End Function<br />
=====</p>
<p>I set this up with a &#8220;Check&#8221; button in cell B2 with the following assigned macro.</p>
<p>=====<br />
Sub CheckWord()</p>
<p>  &#8216; Where are the important items?<br />
  WordSheet = &#8220;Sheet2?<br />
  WordCell = &#8220;C2?</p>
<p>  &#8216; Get the word<br />
  oneWord = UCase(Trim(Worksheets(WordSheet).Range(WordCell).Text))</p>
<p>  &#8216; Check the word<br />
  How = ColSpellPoss(oneWord)</p>
<p>  &#8216; Report results<br />
  If (How  &#8220;&#8221;) Then<br />
    MsgBox How, , &#8220;Possible&#8221;<br />
  Else<br />
    MsgBox &#8220;Not Possible&#8221;, , &#8220;Not Possible&#8221;<br />
  End If</p>
<p>End Sub<br />
=====</p>
<p>Charlene<br />
charmtg at yahoo dot com</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dave</title>
		<link>http://www.dailydoseofexcel.com/archives/2004/04/09/the-excel-word-challenge/#comment-6028</link>
		<dc:creator>Dave</dc:creator>
		<pubDate>Mon, 24 Jan 2005 04:54:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=455#comment-6028</guid>
		<description>&lt;p&gt;I hadn&#039;t seen this thread till it got spammed (now removed)&lt;/p&gt;
&lt;p&gt;I used a RegExp approach which generated some more 11 letter words but I couldn&#039;t top CERAMBYCIDAES with the dictionary I used&lt;/p&gt;
&lt;p&gt;wavelengths&lt;br&gt;
psychedelia&lt;br&gt;
interethnic&lt;/p&gt;
&lt;p&gt;My identifying/testing code may be of interest. I used two very long regular expressions to parse 55,000 words and test for a valid match. I&#039;m 99.9% sure that the validation works .... the concern is a string with a single / double column overlap may pass through incorrectly. If anyone finds one please let me know&lt;/p&gt;
&lt;p&gt;Cheers&lt;/p&gt;
&lt;p&gt;Dave&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;Option Explicit&lt;br&gt;
&lt;br&gt;
Sub CheckWords()&lt;br&gt;
&#039;Requires a reference to MicroSoft VBscript Regular Expressions 5.5&lt;br&gt;
&#039;This can an be done programatically with&lt;br&gt;
&#039;ActiveWorkbook.VBProject.References.AddFromGuid &quot;{3F4DACA7-160D-11D2-A8E9-00104B365C9F}&quot;, 5, 5&lt;br&gt;
&lt;br&gt;
&#160; &#160; Dim RegEx As regexp&lt;br&gt;
&#160; &#160; Dim ColPos As Range&lt;br&gt;
&#160; &#160; Dim NewString As String, TestWord, tWord As Variant&lt;br&gt;
&#160; &#160; TestWord = Array(&quot;BEER&quot;, &quot;BARBECUED&quot;, &quot;MACADAMIA&quot;, &quot;ELICIT&quot;, &quot;PSYCHEDELIC&quot;, &quot;SUBTERFUGE&quot;, _&lt;br&gt;
&#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160;&quot;AEGILOPS&quot;, &quot;BACTERICIDIN&quot;, &quot;ANOEGENETIC&quot;, &quot;CERAMBYCIDAES&quot;, &quot;NOTME&quot;)&lt;br&gt;
&#160; &#160; Set RegEx = New regexp&lt;br&gt;
&lt;br&gt;
&#160; &#160; &#039;Create test string of &quot;(A)?(B)?(C)?......(AA)?(AB)?(AC)?.....(IV)?&lt;br&gt;
&#160; &#160; RegEx.Pattern = &quot;(w+):w+&quot;&lt;br&gt;
&#160; &#160; For Each ColPos In Sheets(1).Columns&lt;br&gt;
&#160; &#160; &#160; &#160; NewString = NewString &amp; &quot;(&quot; &amp; RegEx.Replace(ColPos.Address(, False), &quot;$1&quot;) &amp; &quot;)?&quot;&lt;br&gt;
&#160; &#160; Next&lt;br&gt;
&#160; &#160; RegEx.Global = False&lt;br&gt;
&lt;br&gt;
&#160; &#160; &#039;Tests ABCD....AAABAC...IV&lt;br&gt;
&#160; &#160; For Each tWord In TestWord&lt;br&gt;
&#160; &#160; &#160; &#160; RegEx.Pattern = NewString&lt;br&gt;
&#160; &#160; &#160; &#160; If RegEx.Replace(tWord, 1) = &quot;1&quot; Then&lt;br&gt;
&#160; &#160; &#160; &#160; &#160; &#160; Debug.Print tWord &amp; &quot; is valid&quot;&lt;br&gt;
&#160; &#160; &#160; &#160; &#160; &#160; &#039;A second test is necessary as the first test may incorrectly partially match a string&lt;br&gt;
&#160; &#160; &#160; &#160; &#160; &#160; &#039;ie &quot;BACTERICIDIN&quot; matches &quot;B&quot; then &quot;AC&quot; leaving no match for &quot;TE&quot; or &quot;T&quot;&lt;br&gt;
&#160; &#160; &#160; &#160; Else&lt;br&gt;
&#160; &#160; &#160; &#160; &#160; &#160; &#039;Create test string of &quot;(AA)?(AB)?(AC)?......(IV)?&lt;br&gt;
&#160; &#160; &#160; &#160; &#160; &#160; &#039;ie &quot;BACTERICIDIN&quot; matches &quot;BA&quot; then &quot;CT&quot; then &quot;ET&quot; etc&lt;br&gt;
&#160; &#160; &#160; &#160; &#160; &#160; RegEx.Pattern = Right(NewString, Len(NewString) - InStr(NewString, &quot;(AA)&quot;) + 1)&lt;br&gt;
&#160; &#160; &#160; &#160; &#160; &#160; &#039;Tests AAABAC....IV&lt;br&gt;
&#160; &#160; &#160; &#160; &#160; &#160; If RegEx.Replace(tWord, 1) = &quot;1&quot; Then&lt;br&gt;
&#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; Debug.Print tWord &amp; &quot; is valid&quot;&lt;br&gt;
&#160; &#160; &#160; &#160; &#160; &#160; Else&lt;br&gt;
&#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; Debug.Print tWord &amp; &quot; is invalid&quot;&lt;br&gt;
&#160; &#160; &#160; &#160; &#160; &#160; End If&lt;br&gt;
&#160; &#160; &#160; &#160; End If&lt;br&gt;
&#160; &#160; Next&lt;br&gt;
&#160; &#160; Set RegEx = Nothing&lt;br&gt;
End Sub&lt;/div&gt;&lt;/div&gt;
</description>
		<content:encoded><![CDATA[<p>I hadn&#8217;t seen this thread till it got spammed (now removed)</p>
<p>I used a RegExp approach which generated some more 11 letter words but I couldn&#8217;t top CERAMBYCIDAES with the dictionary I used</p>
<p>wavelengths<br />
psychedelia<br />
interethnic</p>
<p>My identifying/testing code may be of interest. I used two very long regular expressions to parse 55,000 words and test for a valid match. I&#8217;m 99.9% sure that the validation works &#8230;. the concern is a string with a single / double column overlap may pass through incorrectly. If anyone finds one please let me know</p>
<p>Cheers</p>
<p>Dave</p>
<div style="overflow: auto; white-space: nowrap;" class="codecolorer-container text default">
<div style="white-space: nowrap;" class="text codecolorer">Option Explicit</p>
<p>Sub CheckWords()<br />
&#8216;Requires a reference to MicroSoft VBscript Regular Expressions 5.5<br />
&#8216;This can an be done programatically with<br />
&#8216;ActiveWorkbook.VBProject.References.AddFromGuid &#8220;{3F4DACA7-160D-11D2-A8E9-00104B365C9F}&#8221;, 5, 5</p>
<p>&nbsp; &nbsp; Dim RegEx As regexp<br />
&nbsp; &nbsp; Dim ColPos As Range<br />
&nbsp; &nbsp; Dim NewString As String, TestWord, tWord As Variant<br />
&nbsp; &nbsp; TestWord = Array(&#8220;BEER&#8221;, &#8220;BARBECUED&#8221;, &#8220;MACADAMIA&#8221;, &#8220;ELICIT&#8221;, &#8220;PSYCHEDELIC&#8221;, &#8220;SUBTERFUGE&#8221;, _<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&#8221;AEGILOPS&#8221;, &#8220;BACTERICIDIN&#8221;, &#8220;ANOEGENETIC&#8221;, &#8220;CERAMBYCIDAES&#8221;, &#8220;NOTME&#8221;)<br />
&nbsp; &nbsp; Set RegEx = New regexp</p>
<p>&nbsp; &nbsp; &#8216;Create test string of &#8220;(A)?(B)?(C)?&#8230;&#8230;(AA)?(AB)?(AC)?&#8230;..(IV)?<br />
&nbsp; &nbsp; RegEx.Pattern = &#8220;(w+):w+&#8221;<br />
&nbsp; &nbsp; For Each ColPos In Sheets(1).Columns<br />
&nbsp; &nbsp; &nbsp; &nbsp; NewString = NewString &amp; &#8220;(&#8221; &amp; RegEx.Replace(ColPos.Address(, False), &#8220;$1&#8243;) &amp; &#8220;)?&#8221;<br />
&nbsp; &nbsp; Next<br />
&nbsp; &nbsp; RegEx.Global = False</p>
<p>&nbsp; &nbsp; &#8216;Tests ABCD&#8230;.AAABAC&#8230;IV<br />
&nbsp; &nbsp; For Each tWord In TestWord<br />
&nbsp; &nbsp; &nbsp; &nbsp; RegEx.Pattern = NewString<br />
&nbsp; &nbsp; &nbsp; &nbsp; If RegEx.Replace(tWord, 1) = &#8220;1&#8243; Then<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Debug.Print tWord &amp; &#8221; is valid&#8221;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &#8216;A second test is necessary as the first test may incorrectly partially match a string<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &#8216;ie &#8220;BACTERICIDIN&#8221; matches &#8220;B&#8221; then &#8220;AC&#8221; leaving no match for &#8220;TE&#8221; or &#8220;T&#8221;<br />
&nbsp; &nbsp; &nbsp; &nbsp; Else<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &#8216;Create test string of &#8220;(AA)?(AB)?(AC)?&#8230;&#8230;(IV)?<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &#8216;ie &#8220;BACTERICIDIN&#8221; matches &#8220;BA&#8221; then &#8220;CT&#8221; then &#8220;ET&#8221; etc<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; RegEx.Pattern = Right(NewString, Len(NewString) &#8211; InStr(NewString, &#8220;(AA)&#8221;) + 1)<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &#8216;Tests AAABAC&#8230;.IV<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; If RegEx.Replace(tWord, 1) = &#8220;1&#8243; Then<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Debug.Print tWord &amp; &#8221; is valid&#8221;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Else<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Debug.Print tWord &amp; &#8221; is invalid&#8221;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; End If<br />
&nbsp; &nbsp; &nbsp; &nbsp; End If<br />
&nbsp; &nbsp; Next<br />
&nbsp; &nbsp; Set RegEx = Nothing<br />
End Sub</div>
</div>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andy Pope</title>
		<link>http://www.dailydoseofexcel.com/archives/2004/04/09/the-excel-word-challenge/#comment-1318</link>
		<dc:creator>Andy Pope</dc:creator>
		<pubDate>Sun, 11 Apr 2004 14:53:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=455#comment-1318</guid>
		<description>&lt;p&gt;I have posted a page on my site so if anybodys interested they can see the code. I&#039;m sure its not 100% complete.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://www.andypope.info/fun/Columnwords.htm&quot; rel=&quot;nofollow&quot;&gt;http://www.andypope.info/fun/Columnwords.htm&lt;/a&gt;&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>I have posted a page on my site so if anybodys interested they can see the code. I&#8217;m sure its not 100% complete.</p>
<p><a href="http://www.andypope.info/fun/Columnwords.htm" rel="nofollow">http://www.andypope.info/fun/Columnwords.htm</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: JWalk</title>
		<link>http://www.dailydoseofexcel.com/archives/2004/04/09/the-excel-word-challenge/#comment-1317</link>
		<dc:creator>JWalk</dc:creator>
		<pubDate>Sun, 11 Apr 2004 02:14:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=455#comment-1317</guid>
		<description>&lt;p&gt;50 lines? I gave up after writing about 20 lines, realizing that it was a lot more difficult than I originally thought.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>50 lines? I gave up after writing about 20 lines, realizing that it was a lot more difficult than I originally thought.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andy Pope</title>
		<link>http://www.dailydoseofexcel.com/archives/2004/04/09/the-excel-word-challenge/#comment-1316</link>
		<dc:creator>Andy Pope</dc:creator>
		<pubDate>Sat, 10 Apr 2004 21:35:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=455#comment-1316</guid>
		<description>&lt;p&gt;I can&#039;t beat either the longest word or the single column word :(&lt;/p&gt;
&lt;p&gt;But I can add a twist which will let EX-CE-L work.&lt;/p&gt;
&lt;p&gt;It requires XL2003 (maybe even XL2002), on the Tools &gt; Options dialog on the International tab is a switch that allows right-to-left layout.&lt;br&gt;
This opens up a lot of new letter combinations :0&lt;/p&gt;
&lt;p&gt;What do you think Dick, imaginative work-around or cheat?&lt;/p&gt;
&lt;p&gt;BTW my 2 checking VBA routines are just short of 50 lines.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>I can&#8217;t beat either the longest word or the single column word <img src='http://www.dailydoseofexcel.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </p>
<p>But I can add a twist which will let EX-CE-L work.</p>
<p>It requires XL2003 (maybe even XL2002), on the Tools &gt; Options dialog on the International tab is a switch that allows right-to-left layout.<br />
This opens up a lot of new letter combinations :0</p>
<p>What do you think Dick, imaginative work-around or cheat?</p>
<p>BTW my 2 checking VBA routines are just short of 50 lines.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jan Vromant</title>
		<link>http://www.dailydoseofexcel.com/archives/2004/04/09/the-excel-word-challenge/#comment-1315</link>
		<dc:creator>Jan Vromant</dc:creator>
		<pubDate>Sat, 10 Apr 2004 17:08:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=455#comment-1315</guid>
		<description>&lt;p&gt;Shen, this is awesome!&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Shen, this is awesome!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: shen fenderson</title>
		<link>http://www.dailydoseofexcel.com/archives/2004/04/09/the-excel-word-challenge/#comment-1314</link>
		<dc:creator>shen fenderson</dc:creator>
		<pubDate>Sat, 10 Apr 2004 07:27:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=455#comment-1314</guid>
		<description>&lt;p&gt;I was using the scrabble long word list.  Good thing I never tried to use &quot;bactericidin&quot; while playing scrabble.&lt;/p&gt;
&lt;p&gt;Anyway, I tried some other dictionaries, and came up with:&lt;/p&gt;
&lt;p&gt;CERAMBYCIDAES&lt;/p&gt;
&lt;p&gt;...beetles of the family cerambycidae.  Not exactly a common word, but hey, google finds two entomologists that use it.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>I was using the scrabble long word list.  Good thing I never tried to use &#8220;bactericidin&#8221; while playing scrabble.</p>
<p>Anyway, I tried some other dictionaries, and came up with:</p>
<p>CERAMBYCIDAES</p>
<p>&#8230;beetles of the family cerambycidae.  Not exactly a common word, but hey, google finds two entomologists that use it.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

