How to read cell - AA1

Hi All,
Can someone tell me how to read cell “AA1”
I am getting error message - can not convert from System.Double

Thanks

Hi @Hitesh1

Have a look to the below Thread for the same :-

In the above thread it is mention that how to read the Cell after Z.

Mark as solution and like it if this helps you :slight_smile:

Happy Automation :raised_hands:

Best Regards
Er Pratik Wavhal :robot::man_technologist:t4: :computer:

i tried – “A”+Convert.ToChar(Convert.ToInt16(65))+“1”.ToString
but no luck

Can you please help in this

Thanks

Hi @Hitesh1

Below is the workflow for the same :-
MainPratik.xaml (7.1 KB)

Output :-
image

Char cell_col = [

“A”+Convert.ToChar(Convert.ToInt16(cell_col)-26)+“1”

Have a look to the below img :-

After Capital Z Again A starts right ??

So in the same way after Capital Z If we increment the Ascii Value then it is [

So after Subtracting 26 from the Ascii Value of [ We get Capital A

"A"+Convert.ToChar(Convert.ToInt16(Convert.ToChar("["))-26)+"1"

Mark as solution and like it if this helps you :slight_smile:

Happy Automation :raised_hands:

Best Regards
Er Pratik Wavhal :robot::man_technologist:t4: :computer:

1 Like

Thanks, It worked

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.