I have excel table that column contain a date.
However, some date is missing.
So, I would like to write UiPath that can read the date and insert column of missing date.
Please refer picture of table below.
P.S. In table you will see 09/08/2025 then jump to 13/08/2025.
I need UiPath to insert 10-12/08/2025,
Hope to receive advice from you all.
Hi, @MontikaChaikittiporn first you can Read Range → get your table into a DataTable.
Then Get all date columns → dt.Columns.Cast(Of DataColumn).Select(Function(c) DateTime.Parse(c.ColumnName)).OrderBy(Function(d) d).ToList()
After that Loop through dates → check if NextDate = CurrentDate.AddDays(1); if not, insert missing columns using Add Data Column activity with that missing date as column name.