
Hi All,
I'm trying to get recurring events to work in a PowerApps calendar. If I don't enter "recurrenceEnd" it works but the recurrence goes on forever. If I try to enter a recurrence end date it errors out with the error shown.
Does anyone have experience getting this to work?
Thanks in advance
Error
Code
Office365Outlook.V4CalendarPostItem(
"Calendar",
datesOrgSelectionDropdown_2.Selected.structureName,
Concatenate(recurringStartDate1.SelectedDate, " ", recurringStartTime1.Text),
Concatenate(recurringStartDate1.SelectedDate, " ", recurringEndTime1.Text) ,
"(UTC-08:00) Pacific Time (US & Canada)",
{
body:Concatenate("Org Selection: ", Text(datesOrgSelectionDropdown_2.Selected.structureName)),
recurrence: Text(recurrenceSchedule.Selected.Value),
recurrenceEnd: recurringEndDate1.SelectedDate,
isAllDay: If(recurringAllDayToggle.Value=true,true,false)
}
)
Hi @a-mccormack ,
I found some similar case of this error and finally it seems due to data format:
https://github.com/microsoftgraph/msgraph-sdk-javascript/issues/404
Could you please share a screenshot with some sample data for that formula?
Hope this helps.