19-01-20 05:06 PM
20-01-20 02:20 AM
Hello, shah s
You can use loop stage to loop through all the rows in the collection.
Since you have successfully replace the character in one row of the collection, you should be able to achieve what you were trying to do with adding a loop.
Regards,
Met Vonghiran
20-01-20 07:57 PM
20-01-20 08:12 PM
21-01-20 08:27 PM
23-01-20 05:23 AM
try for each dr as datarow in blanks.rows for each c as datacolumn in blanks.columns if (dr(c.columnname)).ToLower() = (TBR).ToLower() then dr(c.columnname) = Value end if next next no_blanks = blanks catch e as exception end try
23-01-20 09:00 AM
04-02-20 04:49 AM
Collection_Out=Collection_In.Copy for each dr as Datarow in Collection_Out.Rows for each dc as DataColumn in Collection_In.Columns If( GetBluePrismDataType(dc.datatype)="text" ) If(dr(dc.columnname).Contains(" ")) then dr(dc.columnname)=Replace(dr(dc.columnname)," ","_") end If End If Next Next
05-02-20 01:14 PM