Hi everyone!
I have a simple task. When a user receives an email, it is necessary to update the corresponding entries in the SharePoint list.
The SharePoint list contains a column ReportDay in the Date/Time format (only Date).
The problem is that I can't update the value of this column in the format dd.MM.yyyy. (for example 13.07.2023)
I can do it manually in the Sharepoint list. Through the application that I made in Power Apps- I can too. But via flow doesn't work.
Flow ends with an error:
Action 'Update_item' failed
The 'inputs.parameters' of workflow operation 'Update_item' of type 'OpenApiConnection' is not valid. Error details: Input parameter 'item/ReportDay' is required to be of type 'String/date'. The runtime value '"13.07.2023"' to be converted doesn't have the expected format 'String/date'.
Tried a lot of things.
The last thing I tried.
Created a variable Today, then substituted into Compose action with Expression
formatDateTime(variables('Today'),'dd.MM.yyyy')

, then substituted into Update item action

At the output get the folowing:


In the same time I can insert manualy date 13.07.2023 in ReportDay column in SharePoint list

What am I doing wrong?
Thanx in advance!