<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Alphabet wrangling. in VBA Forum</title>
    <link>https://forums.autodesk.com/t5/vba-forum/alphabet-wrangling/m-p/1456823#M39892</link>
    <description>Oh my gawd this question seems so simple I'm embarrassed asking it:&lt;BR /&gt;
&lt;BR /&gt;
In VBA, is there a way you can increment a letter variable to be the next letter in the alphabet?&lt;BR /&gt;
&lt;BR /&gt;
For example, if Myvar = "a", can I make Myvar = "b" without having to assign it directly?&lt;BR /&gt;
&lt;BR /&gt;
I want to name a series of objects a letter starting at "a", with the next object called the next letter, and I don't know how many objects I'm going to have. With integers, obviously, you can just add 1, but can you do something similar with letters?</description>
    <pubDate>Wed, 12 Oct 2005 11:37:10 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2005-10-12T11:37:10Z</dc:date>
    <item>
      <title>Alphabet wrangling.</title>
      <link>https://forums.autodesk.com/t5/vba-forum/alphabet-wrangling/m-p/1456823#M39892</link>
      <description>Oh my gawd this question seems so simple I'm embarrassed asking it:&lt;BR /&gt;
&lt;BR /&gt;
In VBA, is there a way you can increment a letter variable to be the next letter in the alphabet?&lt;BR /&gt;
&lt;BR /&gt;
For example, if Myvar = "a", can I make Myvar = "b" without having to assign it directly?&lt;BR /&gt;
&lt;BR /&gt;
I want to name a series of objects a letter starting at "a", with the next object called the next letter, and I don't know how many objects I'm going to have. With integers, obviously, you can just add 1, but can you do something similar with letters?</description>
      <pubDate>Wed, 12 Oct 2005 11:37:10 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/alphabet-wrangling/m-p/1456823#M39892</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2005-10-12T11:37:10Z</dc:date>
    </item>
    <item>
      <title>Re: Alphabet wrangling.</title>
      <link>https://forums.autodesk.com/t5/vba-forum/alphabet-wrangling/m-p/1456824#M39893</link>
      <description>This should do it for you!&lt;BR /&gt;
&lt;BR /&gt;
Joe&lt;BR /&gt;
--&lt;BR /&gt;
&lt;BR /&gt;
Public Function IncrementCharacter(Char As String) As String&lt;BR /&gt;
  IncrementCharacter = Chr(Asc(Char) + 1)&lt;BR /&gt;
End Function&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;SAINSY&gt; wrote in message news:4981907@discussion.autodesk.com...&lt;BR /&gt;
Oh my gawd this question seems so simple I'm embarrassed asking it:&lt;BR /&gt;
&lt;BR /&gt;
In VBA, is there a way you can increment a letter variable to be the next &lt;BR /&gt;
letter in the alphabet?&lt;BR /&gt;
&lt;BR /&gt;
For example, if Myvar = "a", can I make Myvar = "b" without having to assign &lt;BR /&gt;
it directly?&lt;BR /&gt;
&lt;BR /&gt;
I want to name a series of objects a letter starting at "a", with the next &lt;BR /&gt;
object called the next letter, and I don't know how many objects I'm going &lt;BR /&gt;
to have. With integers, obviously, you can just add 1, but can you do &lt;BR /&gt;
something similar with letters?&lt;/SAINSY&gt;</description>
      <pubDate>Wed, 12 Oct 2005 11:53:04 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/alphabet-wrangling/m-p/1456824#M39893</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2005-10-12T11:53:04Z</dc:date>
    </item>
    <item>
      <title>Re: Alphabet wrangling.</title>
      <link>https://forums.autodesk.com/t5/vba-forum/alphabet-wrangling/m-p/1456825#M39894</link>
      <description>Thanks Joe, you're a life saver. That's exactly what I needed!</description>
      <pubDate>Wed, 12 Oct 2005 12:01:12 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/alphabet-wrangling/m-p/1456825#M39894</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2005-10-12T12:01:12Z</dc:date>
    </item>
  </channel>
</rss>

