Hi All
Would anyone please advise me on the error below:
OpenApiOperationParameterTypeConversionFailed. The 'inputs.parameters' of workflow operation 'Update_item' of type 'OpenApiConnection' is not valid. Error details: Input parameter 'item/Cargo_x0020_Ready_x0020_Date' is required to be of type 'String/date'. The runtime value '"30-06-2020"' to be converted doesn't have the expected format 'String/date'.
I am trying to get the date value from excel and write it to SharePoint list.
I have a few issues:
- Get table row is returning the value in numbers, even though I have used ISO format as date and time. Strange enough, some date columns from excel is returning date and time values.
- I have used below expression to write into the list. No luck.
if(empty(outputs('Compose')?['Cargo Ready Date']),null,addDays('1899-12-30', int(outputs('Compose')?['Cargo Ready Date']),'dd-MM-yyyy'))
Thanks