I am trying to filter a specific column for two parameters rather than one. The logic string I am trying is :
IF [Functional Area] = "XYZ" OR [Functional Area] = "ABC"
I want to filter the data set down to include just XYZ and ABC but am struggling with writing the logic string.
¡Resuelto! Ir a solución.
You don't need the IF part! Just:
[Functional Area] = "XYZ" OR [Functional Area] = "ABC"
Thank you! Easier than I thought 😁 I noticed it worked for me without quotation marks around the Functional area codes... does it matter if they are used or not?
I would leave them!