I have the one of the excel columns in date format as “02/01/20201”, but when I am loading the entire excel data into the orchestrator queue, the data being uploaded as “02/01/2021 00:00:00”. I tried to changing column type to different formats in excel, but nothing worked so far.
if you cannot change the column format, you can only take the data from excel. Then you can get the substring from each row. So you can get only the first 10 characters and so you have only the date without time.
YourString.Substring(0,10)
YourString is the row content. If you do that in For Each Row activity: row(“ColumnName”).ToString.Substring(0,10)
row(“DateColumn”).ToString.Substring(0,10)