I have a dataset that has a column that flags records, the flags are 1,2,3,4,5. I want to add a custom filter to this data set to only select flags 2 & 5.
Currently, my expression is as follows : IF([Field1]=1 OR [Field1]=2) but I am getting an error stating it is a malformed IF statement.
what would be the proper syntax for create a filter for just flags 2 & 5?
Thank you,