Charlotte Price Posted January 30, 2023 Share Posted January 30, 2023 I have a table which I want to filter to only show rows based on some rules: BO rows only when DIST TYPE is "CONSTANT"DEGREE_FILL rows only when DIST TYPE is "CONSTANT"SHOIL rows only when DIST TYPE is "STRETCHED_BETA" I've got as far as using this expression in Filter rows:([DIST] IN ("DEGREE_FILL", "BO")) And ([DIST TYPE]="CONSTANT") but when I try and add the SHOIL STRETCHED_BETA filter, it falls over as I can't seem to get it to handle multiple cases. Any thoughts on how I can fit all of these filters in the one expression?Cheers! Link to comment Share on other sites More sharing options...
Solution Fredrik Rosell Posted January 30, 2023 Solution Share Posted January 30, 2023 Hello,Have you tested something like this?(([DIST] IN ("DEGREE_FILL", "BO")) And (([DIST TYPE]="CONSTANT")))OR (([DIST]="SHOIL") And ([DIST TYPE]="STRETCHED_BETA")) Link to comment Share on other sites More sharing options...
Charlotte Price Posted January 30, 2023 Author Share Posted January 30, 2023 I think I tried similar but was getting syntax errors probably due to brackets but this has worked perfectly. Thanks Fredrik! Link to comment Share on other sites More sharing options...
Fredrik Rosell Posted January 31, 2023 Share Posted January 31, 2023 Great - thank you for confirming. Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now