I've got a calendar in a canvas app which is linked to a SharePoint list. I want the calendar to show if there are items booked on that day. There are 3 columns in the SharePoint list called 'Start Date', 'Second Date' and 'Third Date'. I'm using the below formula which shows any items that has all 3 dates. When it only has a 'Start Date' and 'Second Date', the items do not show and I can't work out how to change the formula so it looks at the 'Second Date' column.
CountRows(
Filter(
'SharePoint List Name',
DateAdd(
_firstDayInView,
ThisItem.Value
) >= 'Start Date' && DateAdd(
_firstDayInView,
ThisItem.Value
) <= 'Third Date'
)
)