SOLVED

Is there a way to update only time and not date on calendar event?

Copper Contributor

When an 'all day' event is added in calendar i want to update start- and end times to 08.00 and 16.00 but I want to keep the original date for the event. Is there any way to achieve this?

And is it also possible to monitor multiple calendars in the same flow?

 

andlan520_1-1700732097973.png

 

 

2 Replies
Hi @andlan520,

This action expects a combined date/time value for the two mentioned fields, so you will need to include the original date as well.

No, it is not possible to monitor more than one calendar per flow.
best response confirmed by andlan520 (Copper Contributor)
Solution

I found a solution to the date/time question, I added an expression with the following string and it did exactly what I wanted.

concat(formatDateTime(triggerOutputs()?['body/start'], 'yyyy-MM-dd'), 'T08:00:00')

 

1 best response

Accepted Solutions
best response confirmed by andlan520 (Copper Contributor)
Solution

I found a solution to the date/time question, I added an expression with the following string and it did exactly what I wanted.

concat(formatDateTime(triggerOutputs()?['body/start'], 'yyyy-MM-dd'), 'T08:00:00')

 

View solution in original post