Hi,
I'm trying to solve a delegation warning from the following piece of code:
Filter(partnumbers, ID in [1, 2, 3])
Where partnumbers is a list that contains a column called 'ID'. I would like to return the rows that contain either an ID of 1, 2 or 3. However, I get a delegation warning about the 'in' statement. What is the reason why it throws a delegation warning.
Thanks in advance!