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
Ajju
(Ajjayya Hiremath)
September 24, 2021, 6:26am
2
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
aanandsanraj
(Anandraj Rajendran)
September 24, 2021, 6:28am
4
@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
system
(system)
Closed
September 27, 2021, 6:51am
6
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.