I have a collection (called ABC) and a sub collection (called scheduleItems). The following works to check if the first item in the sub collection = 10:00 (and then changes a colour accordingly).
If(Text(DateTimeValue(First(First(ABC).scheduleItems).start.dateTime),
DateTimeFormat.ShortTime24
) = "10:00",
Orange,RGBA(0,0,0,0))
But how would I create the above when looking for 'any' row that matches "10:00"?