Printing specific range of rows

Hi Team,
I want to print values from row D7 to D13…i am using read range to read data from D7:D13, i am using for each CurrentRow to print data but its printing System.Data.DataRow 7 times in output panel.

I can print it with using output DataTable activity but i want the output to be printed in loop one by one for further process.

Please help
Thanks in advance

use the expressing row.item(0).tostring or row(0).tostring

Hi @Daniyal_Tahir

Use CurrentRow(0).toString because you re not using index value!

Regards

@Daniyal_Tahir

You have to provide the column name like below
CurrentRow("ColumnName").ToString
or
CurrentRow(0).ToString
or
You can use Get Row Item activity

Thanks guyz it worked with CurrentRow(0).ToString

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