I’m trying to print a number into excel that starts with zeros, something 000123,
the solution I had in mind is that concatenate the number with a single quote, something like SampleInteger + “'”, but when I check the excel file. it displays 123 and no single quote was printed in the cell. How do I achieve this?
Could you try this and see if it works out for you?
(From row In dt_sampleData.AsEnumerable()
Let ls = row.ItemArray.ToList()
Let ra = ls.ConvertAll(Function(a) "'"+a.ToString).ToArray()
Select dt_Result.Rows.Add(ra)).CopyToDataTable()
sorry, currently having issues with my Generate DataTable from Text activity which is having excess rows which is a duplicate of the first row. I’ll get back to you as soon as I fix this and able to test the solution you provided. Thank you for the response, BRB