Is it possible to convert a collection into a .txt file separated by tabs?

Mario_rpa

New Member
I´m trying to convert a collection into a text file. I´ve tried converting the collection into a CSV to get the text and appending that CSV into a text file but when I open it, there´s nothing on it.
 

Sachin_Kharmale

Active Member
Try
Utility file management VBO
Action - Append text
Input will be - input text file
Loop the collection using loop
Inside loop use the append text action
Pass input as file name
And collection Values like
[input coll. Filed1] & " " & [input coll. Filed1]
Concat collection data with space
IT will store data in text file
 

Sachin_Kharmale

Active Member

Mario_rpa

New Member
Top