Hi All. I want to find last cloumn Address in excel sheet. It is like, A5, B6. Please help me on this
Use Find First/Last Data row
Hi @Rambabu_N
Use Find First/Last Data Row activity
Thank you. can you please do one example. I am very new to this Ui path
@rlgandu , from this we are getting only Numeric. But i need character “A”
As you know the column already …after getting the number you can just append it with A infront
"A" + retrievedValue
Cheers
I suggest doing the free training on the UiPath Academy web site. This will give you a foundation of knowledge that makes it easier to understand these things.
Use Find First or Last Data Row and store the result in a variable Last_row
Use Assign:
lastColumnAddress=new string(Convert.ToChar(65 + YourColumnIndexInNumber), 1) +Last_row.ToString
If you get the answer mark as solution to close the loop