Hello,
I am trying to download my outlook calendar to excel, i tried to use the below activities but getting an error when trying to convert the output into string. Is this the correct way to download outlook calendar to excel?
Hello,
I am trying to download my outlook calendar to excel, i tried to use the below activities but getting an error when trying to convert the output into string. Is this the correct way to download outlook calendar to excel?
Hello,
Below is the error, so i also tried to change the TypeArgument in the for each activity to string but still the same error.
Hi,
If you want to get events from your calendar, you don’t need to use Get Calendar, because if we leave empty in Calendar property of SearchEvents, it will search your own calendar.
And TypeArgument of ForEach will be Microsoft.Graph.Event as the following.
Regards,
Thank you!! That worked!!
one questions, for some reason its not picking up the events before noon on the 20th, is this due to the time zone? any ideas?
Hi,
For now, can you try the following?
DateTime.Today.AddDays(-7)
or
DateTime.UtcNow.Date.AddDays(-7)
Regards,
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.