Hi
i want to filter calendar entries based on the name selected equal to calendar 'created by'
I have a gallery showing a list of specific names from a Sharepoint List.
The user selects a preferred person which then goes to a calendar view.
OnSelect Navigate('BA SBA Calender',ScreenTransition.None, {selectedID: Gallery1.Selected.person_name})
this then navigates to the next screen which has the calendar on it.
I then use this on my 'CalendarEventsGallery2'
Filter('BA SBA Booking', Text('Start Time', DateTimeFormat.ShortDate) = Text(_dateSelected, DateTimeFormat.ShortDate) && Gallery1.Selected.person_name in 'Created By')
or if i use
Filter('BA SBA Booking', Text('Start Time', DateTimeFormat.ShortDate) = Text(_dateSelected, DateTimeFormat.ShortDate) && Gallery1.Selected.person_name in 'Created By')
But i get an error 'Cannot use record values in this context'
Gallery1 is the on the previous screen
Ideally i would like to do this by collection but don't really understand how to do that 😞
Thanks Gary