Hi All! TLDR: I'm 100% a novice at Power Apps and everything I've done so far has been with the power of Google.
That being said, we imported the Desk Booking app template from here and I've been modifying it to create a meeting invitation (successfully) using Shane Young's video. Now I'm struggling to figure out how to cancel the meeting invitation in Outlook when you press the "Cancel" button.
I'm appending the Office365Outlook.CalendarDeleteItemV2 connector to "OnSelect" of the "Cancel" button. My problem is that I don't fully understand how to make it look up the specific event that I'm trying to cancel. What I've got so far is:
Office365Outlook.CalendarDeleteItemV2(LookUp(Office365Outlook.CalendarGetTables().value,DisplayName = "Calendar").Name,event)
It's looking up the correct calendar, but doesn't know what event to cancel. My Google powers are failing me on finding a tutorial or information on how to properly use the CalendarDeleteItemV2 to find the correct event.
My apologies if I'm not using the right phrasing on this, I'm 1.5 weeks into using Power Apps and trying to "figure it out." Any help would be appreciated!