How to get data from specific column

Hi,

image
I have to assign these 3 values to 3 different variable

@Deeksha,

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 :slight_smile:

Hi,
Thankyou Ashok for the quick reply

1 Like

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