Forum Discussion

andlan520's avatar
andlan520
Copper Contributor
Nov 23, 2023
Solved

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

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?

 

 

 

  • 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')

     

  • andlan520's avatar
    andlan520
    Copper Contributor

    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')

     

  • BCBuizer's avatar
    BCBuizer
    Copper Contributor
    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.

Resources