<?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 RE: Get Column Number in Excel in Product Forum</title>
    <link>https://community.blueprism.com/t5/Product-Forum/Get-Column-Number-in-Excel/m-p/58991#M12728</link>
    <description>Hi,&lt;BR /&gt;&lt;BR /&gt;There is a pre-built component available on the &lt;A href="https://www.rpa-marketplace.com/" target="_blank" rel="noopener" title="RPA Marketplace"&gt;RPA Marketplace&lt;/A&gt; that provides this functionality:&amp;nbsp;&lt;BR /&gt;&lt;A href="https://www.rpa-marketplace.com/blue-prism-objects-components/blue-prism-ms-excel-cell-ref-utilities/" target="_blank" rel="noopener" title="Excel Cell Ref Utilities"&gt;MS EXCEL - CELL REF UTILITIES FREE FOR BLUE PRISM&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Take a look. It should do exactly what you need.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Jared&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Jared Rumball&lt;BR /&gt;Executive Director&lt;BR /&gt;Q4 Associates Ltd&lt;BR /&gt;Pacific/Auckland&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
    <pubDate>Wed, 22 Apr 2020 09:56:00 GMT</pubDate>
    <dc:creator>Jared.Rumball</dc:creator>
    <dc:date>2020-04-22T09:56:00Z</dc:date>
    <item>
      <title>Get Column Number in Excel</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Get-Column-Number-in-Excel/m-p/58990#M12727</link>
      <description>​​How to get a column number given a cell reference in Excel?&lt;BR /&gt;&lt;BR /&gt;Ex: Cell Reference - F10&lt;BR /&gt;Then Column number should be 6&amp;nbsp;as F is 6th Column.&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Devi Pratyusha Nallagonda&lt;BR /&gt;------------------------------</description>
      <pubDate>Fri, 17 Apr 2020 12:05:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Get-Column-Number-in-Excel/m-p/58990#M12727</guid>
      <dc:creator>Devi_PratyushaN</dc:creator>
      <dc:date>2020-04-17T12:05:00Z</dc:date>
    </item>
    <item>
      <title>RE: Get Column Number in Excel</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Get-Column-Number-in-Excel/m-p/58991#M12728</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;There is a pre-built component available on the &lt;A href="https://www.rpa-marketplace.com/" target="_blank" rel="noopener" title="RPA Marketplace"&gt;RPA Marketplace&lt;/A&gt; that provides this functionality:&amp;nbsp;&lt;BR /&gt;&lt;A href="https://www.rpa-marketplace.com/blue-prism-objects-components/blue-prism-ms-excel-cell-ref-utilities/" target="_blank" rel="noopener" title="Excel Cell Ref Utilities"&gt;MS EXCEL - CELL REF UTILITIES FREE FOR BLUE PRISM&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Take a look. It should do exactly what you need.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Jared&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Jared Rumball&lt;BR /&gt;Executive Director&lt;BR /&gt;Q4 Associates Ltd&lt;BR /&gt;Pacific/Auckland&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Wed, 22 Apr 2020 09:56:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Get-Column-Number-in-Excel/m-p/58991#M12728</guid>
      <dc:creator>Jared.Rumball</dc:creator>
      <dc:date>2020-04-22T09:56:00Z</dc:date>
    </item>
    <item>
      <title>RE: Get Column Number in Excel</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Get-Column-Number-in-Excel/m-p/58992#M12729</link>
      <description>&lt;P&gt;Hi there!! I just saw your response and downloaded your Cell Ref Utilities file. What should I do before download? I got the code, but should I create an Object and code that or introduce that as a code stage in my process?&lt;/P&gt;
&lt;P&gt;
&lt;/P&gt;&lt;P&gt;Thanks a lot,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Rita&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Rita Reis Cabrita&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Thu, 04 Mar 2021 21:53:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Get-Column-Number-in-Excel/m-p/58992#M12729</guid>
      <dc:creator>RitaReis_Cabrit</dc:creator>
      <dc:date>2021-03-04T21:53:00Z</dc:date>
    </item>
    <item>
      <title>RE: Get Column Number in Excel</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Get-Column-Number-in-Excel/m-p/58993#M12730</link>
      <description>&lt;P&gt;Hi ,&lt;/P&gt;
&lt;P&gt;You mean&amp;nbsp; "convert a base26 number to a decimal number".&lt;/P&gt;
&lt;P&gt;paste this VB code to your code stage. Input argument is "ColAlpha"(Text) and output argument is "ColNum"(Number).&lt;/P&gt;
&lt;P&gt;Add "Microsoft.VisualBasic" and "System.IO" to "Namespace Imports".&lt;/P&gt;
&lt;PRE class="language-csharp"&gt;&lt;CODE&gt;Dim AryColAlpha As Char() = ColAlpha.ToCharArray()
Dim LenColAlpha As Integer = ColAlpha.Length - 1

For Each c As Char In AryColAlpha
	Dim Currentc As Integer = Asc(c) - 64
	If Currentc &amp;lt; 1 Or Currentc &amp;gt; 26 Then ColNum = 0

	ColNum += Currentc * CType(Math.Pow(26, LenColAlpha), Integer)
	LenColAlpha -= 1
Next&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;For example, input&amp;nbsp; is "AAA", output&amp;nbsp; is 703. input is "F", output is 6.&lt;BR /&gt;Only uppercase alphabets can be allowed as input argument. Please check input argument in advance.&lt;BR /&gt;------------------------------&lt;BR /&gt;Mitsuko &lt;BR /&gt;Asia/Tokyo&lt;BR /&gt;------------------------------&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 05 Mar 2021 02:58:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Get-Column-Number-in-Excel/m-p/58993#M12730</guid>
      <dc:creator>sumire</dc:creator>
      <dc:date>2021-03-05T02:58:00Z</dc:date>
    </item>
    <item>
      <title>RE: Get Column Number in Excel</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Get-Column-Number-in-Excel/m-p/58994#M12731</link>
      <description>Hi Rita,&lt;BR /&gt;&lt;BR /&gt;You can just import the object into your Blue Prism environment and call the action(s) directly as you would for any other object. There are no special prerequisites around this object and the actions it provides.&lt;BR /&gt;&lt;BR /&gt;Hope that helps.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Jared&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Jared Rumball&lt;BR /&gt;Q4 Associates Ltd&lt;BR /&gt;&lt;A href="https://www.q4associates.biz/" target="test_blank"&gt;https://www.q4associates.biz/&lt;/A&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Fri, 05 Mar 2021 04:15:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Get-Column-Number-in-Excel/m-p/58994#M12731</guid>
      <dc:creator>Jared.Rumball</dc:creator>
      <dc:date>2021-03-05T04:15:00Z</dc:date>
    </item>
  </channel>
</rss>

