this code:
Convert.ToChar(Convert.ToUInt16("A"C)+Counter)
just able to itterate until Z, i want it to itterate to unlimited letter if possible.
for example until ZZZ.
How to achieve this?
this code:
Convert.ToChar(Convert.ToUInt16("A"C)+Counter)
just able to itterate until Z, i want it to itterate to unlimited letter if possible.
for example until ZZZ.
How to achieve this?
do this instead
UiPath.Excel.Helpers.ExcelUtilities.ConvertColumnIndexToColumnLetter(number)
where number is integer variable
e.g.
number=1 will return A
number = 26 returns Z
number = 100 returns CV
number = 1000 returns ALL
and so on…
is this package or what?
Hi @wija,
I imagine you will need UiPath.Excel.Activities to do it:
no just need excel activities which is already there. just try to use it…
OK this works the way i want.
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.