Hi @RoryL ,
You are right, the sharepoint calendar shows a multi day event as one list entry:
Exported my list entry from sharepoint
This is how it shows in sharepoint calendar:
sharepoint calendar
The start and end times in the collection do seem to be the same as in sharepoint. Here is my collection below:
My Collection in powereapps
And this is how it looks in my powerapps calendar. This is a calendar template from powerapps that i converted to connecting to sharepoints.
Powerapps calendar. Tom Boston which is a two day event shows only on 27.
I think the problem is, I have a Gallery that shows these events in the PA calendar. And this is the Items property of the Gallery: Filter(TestCol, DateValue(Text('Start Time')) = DateAdd(_firstDayInView, ThisItem.Value, Days))
TestCol is the collection that holds all the sharepoint events. I am showing events for records with Start Time that matches the each calendar date. If it matches, it shows on that day.
I tried the below but it ends up showing all the events on all the days:
Filter(TestCol, DateValue(Text('Start Time')) || DateValue(Text('EndTime'))= DateAdd(_firstDayInView, ThisItem.Value, Days))

Thank you for your help!