Hi @AB21 ,
Do you want to connect the Calendar screen to your SP Calendar List?
Based on the needs that you mentioned, I have made a test on my side, please consider take a try with the following workaround:
Add your SP Calendar List into your app. Then select the CalendarEventsGallery1 within your Calendar events screen, set the Items property to following:
/*Shows events only on selected date*/
SortByColumns(
Filter(
'Your Calendar List',
Text('Start Time', DateTimeFormat.ShortDate) = Text(_dateSelected, DateTimeFormat.ShortDate)
),
"EventDate"
)
Then modify the formula within these Labels within this CalendarEventsGallery1:
Title3.Text:
ThisItem.Title
Body1.Text:
Text(ThisItem.'Start Time', DateTimeFormat.ShortTime)
Description1.Text:
DateDiff(ThisItem.'Start Time', ThisItem.'End Time', Minutes) & Lower(Left("Minute", 1))
remove formula from the BorderThickness property of the Rectangle1 control.
Then select the MonthDayGallery1, set the Visible property of the Circle1 control to following (represents if there is an event occurred in that day😞
/*Visible if calendar events are found on this day*/
CountRows(Filter('Your Calendar List', DateValue(Text('Start Time')) = DateAdd(_firstDayInView,ThisItem.Value,Days))) > 0 && !Subcircle1.Visible && Title2.Visible
Please consider take a try with above solution, check if the issue is solved.
Best regards,