Hi,
I have to assign these 3 values to 3 different variable
Hi,
I have to assign these 3 values to 3 different variable
You can get it by reading the data into a DataTable using Read Range Activity.
Once you have that in DataTable assign these data to variables like this.
variable1 = variableDataTable.Rows(0).Item(0).ToString
variable2 = variableDataTable.Rows(1).Item(0).ToString
variable3 = variableDataTable.Rows(2).Item(0).ToString
Thanks,
Ashok
Hi,
Thankyou Ashok for the quick reply
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.