web
You’re offline. This is a read only version of the page.
close
Skip to main content

Notifications

Announcements

Community site session details

Community site session details

Session Id :
Power Platform Community / Forums / Power Apps / How to reschedule an e...
Power Apps
Answered

How to reschedule an event on Outlook

(0) ShareShare
ReportReport
Posted on by

Hello,

 

I am currently working on a reservation system, once reserved an email will be sent with their reservation details and an event will be posted on their Outlook calendar, however, they can reschedule it but I am having issues on how to edit the event posted on their calendars. New schedule will be coming from a date picker and a time picker using a dropdown. 

 

VinChua_0-1696847119109.png

Here is the sample of my code:

 

 

 

With({idCalendarEntry:
 First(
 Office365Outlook.GetEventsCalendarViewV3(
 EventID,

 Text(DateTimeValue(ThisItem.'Start Date' & " " & ThisItem.'Start Time'), DateTimeFormat.UTC), 
 Text(DateTimeValue(ThisItem.'Start Date' & " " & ThisItem.'End Time'),DateTimeFormat.UTC),

 {search:"Welcome to the GreenPod, "& txtClientName.Text &"!"}
 ).value
 )
 },
 Office365Outlook.V3CalendarPatchItem(
 EventID,
 idCalendarEntry.id,
 "Your reservation has a new schedule!",
 Text(DateTimeValue(dpEditStartDate.SelectedDate & " " & drpEditStartTime.Selected.Value), DateTimeFormat.UTC), 
 Text(DateTimeValue(dpEditStartDate.SelectedDate & " " & drpEditEndTime.Selected.Value), DateTimeFormat.UTC), 
 {Body:"Please be reminded of your new schedule"}
 );

 

 

Categories:
I have the same question (0)
  • Verified answer
    v-jefferni Profile Picture
    on at

    Hi @VinChua ,

     

    Please refer to the official doc and get more details about this connector:

    Office 365 Outlook - Connectors | Microsoft Learn

    vjefferni_0-1696906775686.png

     

    One more thing I need to know is where is the update event button? It seems the button is inside a Gallery because there are ThisItem in your formula. But if you only want to update a specific event, the button would be independent on that screen and use below formula:

    Office365Outlook.V3CalendarPatchItem(
     CalendarID,
     idCalendarEntry.id,
     "Your reservation has a new schedule!",
     Text(DateTimeValue(dpEditStartDate.SelectedDate & " " & drpEditStartTime.Selected.Value & " " & Radio.Selected.Value), DateTimeFormat.UTC), 
     Text(DateTimeValue(dpEditStartDate.SelectedDate & " " & drpEditEndTime.Selected.Value & " " & Radio.Selected.Value), DateTimeFormat.UTC), 
     {Body:"Please be reminded of your new schedule"}
    )

     

    Best regards,

Under review

Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.

Helpful resources

Quick Links

Forum hierarchy changes are complete!

In our never-ending quest to improve we are simplifying the forum hierarchy…

Kudos to our 2025 Community Spotlight Honorees

Congratulations to our 2025 community superstars!

Leaderboard > Power Apps

#1
Kalathiya Profile Picture

Kalathiya 445

#2
WarrenBelz Profile Picture

WarrenBelz 386 Most Valuable Professional

#3
MS.Ragavendar Profile Picture

MS.Ragavendar 321 Super User 2025 Season 2

Last 30 days Overall leaderboard