Bulk Add Queue Items

Good day!
I use DT, then I insert into the orchestrator queue using Bulk Add Queue Items
The problem is that some values ​​are inserted instead of the correct ones as “\ u0440 \ u041f / 2-000979”
In DT, these values ​​are correct, how can this be fixed?

Hi @RPA3

May be the formatting issue in column.

So better , convert that column values to string using invoke code with DT as in/out argument

use the code below

DT.AsEnumerable().ToList().ForEach(Sub(row) row(ColumnName)= row(ColumnName).ToString)

Regards

Nived N

Happy Automation