Reading excel and assigning to variables

Hello All,

I am new to UiPath and trying to read an excel sheet having three columns. I am trying to loop through the excel rows to assign the values to my variables so that I can use then further. But I am getting the error : argument value: compiler error encountered processing expressions…integer to string…
I have declared the variables of string type, I am eveb using to.string function, not sure how should I correct it.

I’m using assign : appname = CurrentRow.Item(0).ToString

Screenshot below for the whole program. Can someone please advise?

give a try at:
CurrentRow.ByIndex(0).ToString()

1 Like

@mb29

You need to use

Currentrow(“columnname”).tostring

Cheers

1 Like

Perfect. That worked. Thanks a lot

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