Get Column Number in Excel
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
17-04-20 01:05 PM
Ex: Cell Reference - F10
Then Column number should be 6 as F is 6th Column.
------------------------------
Devi Pratyusha Nallagonda
------------------------------
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
22-04-20 10:56 AM
There is a pre-built component available on the RPA Marketplace that provides this functionality:
MS EXCEL - CELL REF UTILITIES FREE FOR BLUE PRISM
Take a look. It should do exactly what you need.
Regards,
Jared
------------------------------
Jared Rumball
Executive Director
Q4 Associates Ltd
Pacific/Auckland
------------------------------
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
04-03-21 09:53 PM
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?
Thanks a lot,
Rita
------------------------------
Rita Reis Cabrita
------------------------------
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
05-03-21 02:58 AM
Hi ,
You mean "convert a base26 number to a decimal number".
paste this VB code to your code stage. Input argument is "ColAlpha"(Text) and output argument is "ColNum"(Number).
Add "Microsoft.VisualBasic" and "System.IO" to "Namespace Imports".
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 < 1 Or Currentc > 26 Then ColNum = 0
ColNum += Currentc * CType(Math.Pow(26, LenColAlpha), Integer)
LenColAlpha -= 1
Next
For example, input is "AAA", output is 703. input is "F", output is 6.
Only uppercase alphabets can be allowed as input argument. Please check input argument in advance.
------------------------------
Mitsuko
Asia/Tokyo
------------------------------
Mitsuko
Asia/Tokyo
------------------------------
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
05-03-21 04:15 AM
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.
Hope that helps.
Regards,
Jared
------------------------------
Jared Rumball
Q4 Associates Ltd
https://www.q4associates.biz/
------------------------------
