Hi,
I am reading a CSV file with one row of data and add this to a Dataverse table.
The CSV has this format:
Accion,IDEmpleado,Nombre,Primer apellido,Segundo apellido,Fecha,Departamento,IDManager,Duracion prueba,Fecha nacimiento,CodBaja
Alta,003968,PETER,SOUMXX,CARNXXX,17/10/23,TRANSF_EXCUR_ALC,001071,6,12/05/93,
And I need to take the two dates:
17/10/23
12/05/93
But when I open the CSV file in Excel, I get the year in format yyyy.

So, I have a flow that get the CSV, Parse JSON the content and get these data:

And when I want to add a row to a Dataverse table, I get this error:
Unable to process template language expressions in action 'Add_a_new_row' inputs at line '0' and column '0': 'In function 'formatDateTime', the value provided for date time string '17/10/23' was not valid. The datetime string must match ISO 8601 format.'.
In the Add New Row action, I have this formula in the dates fields:
formatDateTime(item()['Nacimiento'], 'MM-dd-yyyy')
It has been working for a while, but I do not know why is not working now.
Thanks for any help!