How can i use data scraping and select in the same ligne which information i want?

no i can’t the scrap does’t let me do that, i can scrap only the all line that why i am asking help

fine. try this below
1 ) create the variable as col1_out and assign the below expression ,
col1_out= Split(row(“columnname”).ToString,“_”)(0).ToString
now again take a assign activity and put the value like below,
row(“columnname”)=col1_out

2 ) again create thye variable as col2_out and assign the below expression ,
col2_out=Split(row(“columnname”).ToString,“_”)(1).ToString
now again take a assign activity and put the value like below,
row(“columnname”)=col2_out
and let me know…

Can u send me a picture plz ?

Split(row(“columnname”).ToString,“_”)(0).ToString assign it in that col1_out 's VB expression and do the remaining like the same

I have this error:


@shalinisettu