Hi,
i created a flow that creates a planner tasks from a list of rows in excel.
when using UTCNOW and ADDDAYS as parameters it woked fine, but when im trying to get the date as input form the excekl im getting an eror.
below some screenshots to assist:
1. the excel date:
2. flow - create a task
3. error message
Please use Convert TimeZone and select RoundTrip pattern, this should solve of converting to format required by "Create Task"
@Miel the solution as proposed by msftis working fine, you should use the formulas as described in his response, than just use the second compose output as your new date value
Hi I've got this same issue. I was able to add in your expressions with the Compose 1 and Compose 2 to get the right date. However I'm stuck as to what to do after that? How do you get the correct date in the "Create a Task" operation? I inserted your Compose operations just above my already existing "Create a Task" operations and still got the same error. Thanks,
Hello,
I have exactly the same problem described above and until now I've understood I have to use the expression
However I have only very basic knowledge of Flow and can't figure out how to make the expression work...
Can anyone tell me exactly what to do? 😞
i found another workaround that work for me, i put as a start date UTCNOW and in my excel im giving numeric intervals per task from day 1.
thanks a lot for your repsonses
Hi @Perez ,
It is a known issue that Date and time returned from the Excel Online table will be converted to a string but not a date.
You need to use a function to format it to a valid date and time.
Please check the following flow for a reference.
Compose is used to get the actual return value of the Start date.
In Compose2, input the following code to get the exact date:
addDays('1899-12-30',int(outputs('Compose')),'yyyy-MM-dd')
Best regards,
Mabel
Hi @Perez
The expression is correct but the date format that you are getting from Excel is not. Were you able to change the column data type to text in excel?
Hi @yashag2255 ,
thanks for your fast reply.
i tried to implement, it didnt worked, i think i didnt got the formatDateTimefunction correctly.
i tried: formatDateTime(item()['Due Date'],'dd/MM/yyyy')
is this correct? if not can you help with putting the correct expression
the error i got:
InvalidTemplate. Unable to process template language expressions in action 'Create_a_task' inputs at line '1' and column '1980': 'In function 'formatDateTime', the value provided for date time string '43662' was not valid. The datetime string must match ISO 8601 format.'.
thanks,
Perez
Hi @Perez
This is an issue with the excel connector and the date type data format on the excel column. I would suggest you to first convert the datatype of your excel column to type text and then run this flow (use the fomrat date time function to format the string to date and time)
Hope this Helps!
If this reply has answered your question or solved your issue, please mark this question as answered. Answered questions helps users in the future who may have the same issue or question quickly find a resolution via search. If you liked my response, please consider giving it a thumbs up. THANKS!