Add items to queue from .txt file

Hi everyone,

I wonder if there is any simple way to add items to queue in orchestrator from .txt file

Till today i was reading cells from .xlsx file and for each row i was adding queue items.
Now i have test.txt file with for example:

1|Joseph|A
2|Catrina|B
3|Tom|C
4|Adam|D

values are separated using β€œ|”

Any suggestions?

Thank you for your time.

You can use STring SPlit Options. You can split by NewLine to get sepearate rows and by β€œ|” to get column values. Please check the attached workflow.

addtoQueuefromTxt.xaml (7.5 KB)

1 Like

Thank you, that’s exactly what i wanted to do!

1 Like