Hi,
I'm planning to do an simple event manager for a reccuring event and one part of it is the session backlog.
The data is located in two different sp lists: 'EMT.Sessions' and 'events'
One column 'EDD' within 'EMT.Session' looks up the data from the 'events' list.
The 'events' list has a colum (type choice) with the state of the event (planned, open for registration, done)
What I want to do now is to create a Gallery where it only shows sessions which are assigned to events that are not in the status 'done', but I really can't get my head around the syntax and the expected format.
At the moment the Items value of the Gallery has the following formula:
SortByColumns(Filter('EMT.Session', StartsWith(Title, TextSearchBox1.Text),EDD.Value = "2018-2"), "Title", If(SortDescending1, Descending, Ascending))
for what I plan to do the "2019-2" after EDD.Value should be replaced with something like this:
lookup(events, status != 'done')
But I can't get it to work as it always rejects either the operator and/or the returned result as wrong