Yes, i partly know that, but how do i implement that i an loop, since i think i first have to put it in an array and then loop throught it with the VBCRLF attached to it?
Can you maybe give a .xaml file example? I an just starting out with Uipath, so not much knowledge yet.
As you want to loop the file data row wise
U can use
Read Range : Dt1
For Each Row = for Dt1
Then it will start looping loop wise
If data is present in first cloumn
then use VarArray=split(Row(0).ToString,vbcrlf)
It will give u array of that sentenses
I have only one CELL with the multi lines. After i have the array, i have to use " Type Into" activity to put every value in a form on a new line, what code do i need to put into the Type Into activity?