I am using power automate to take output from MS forms and send it to an excel spreadsheet. One of the questions in the forms asks the user completing the form to copy a date string in the format dd/mm/yyyy from an access database into the form response field. This field is then passed through to Excel when the forms is submitted.
Everything appeared to be working well but I have noticed recently that, at some point in the process, if the first value in the string (dd) is less than or equal to 12 it is assumed to be a month and is moved to the second field when passed to excel. So 10/1/2020 is transposed to 1/10/2020 in excel. This is incorrect. However, if the first value is greater than 12 it is left in place. So 13/1/2020 stays as 13/1/2020 when inserted into excel.
I need to find a way of maintaining the original format of the date when it is passed through to excel. Any ideas appreciated.