Forum Discussion
DKoh
Feb 21, 2019Copper Contributor
How to create an event with flow?
Hello , I want to create an Event when a new item is created on a SharePoint list. But i don´t know how to full fill the Start / End Time It should work like this Start Time for the meeting...
- Feb 26, 2019
DKoh,
You can try this.... this will create a 30 minute event 1 day after the create date of the item in Sharepoint.
The expressions:
start:
adddays(formatDateTime(triggerBody()?['Created'],' yyyy-MM-ddT11:30'),1)end:adddays(formatDateTime(triggerBody()?['Created'],' yyyy-MM-ddT12:00'),1)Hope this helps...
Terry
Terry_McCullagh
Feb 26, 2019Brass Contributor
DKoh,
You can try this.... this will create a 30 minute event 1 day after the create date of the item in Sharepoint.
The expressions:
start:
adddays(formatDateTime(triggerBody()?['Created'],' yyyy-MM-ddT11:30'),1)
end:
adddays(formatDateTime(triggerBody()?['Created'],' yyyy-MM-ddT12:00'),1)
Hope this helps...
Terry
- SofiamojoJan 09, 2023Copper Contributor
Terry_McCullagh
Hi Terry, I saw that you provided great support to other users, albeit some time ago.
I am trying to create an automated event in Power Automate, an event to be scheduled 30 minutes after an assignment in Planner has been created. But despite several tries it won't work. Would be super grateful for your help!- Terry_McCullaghJan 10, 2023Brass ContributorSofia,
Can you paste a screenshot of the relevant part of your flow and I will try to help?
Terry
- DKohFeb 27, 2019Copper ContributorThank you, perfect!