Forum Discussion
DMB90
Helper II
4 years agoMultiple OR statements with AND and NOT statements
I have the following formula I'm working on. I want to say if the column contains "error" and the other column is not letters D, W, I, A, F or R, then mark the new column as a true statement. Only the first statement with the D is pulling in properly but not all the other possible conditions.
Not clear your image, post the syntax as text ...
Try this?
Monday Errors = AND (
Timesheet[Error] = "Error"
, NOT Timesheet[Mon - Comment] IN { "D", "W", "I", "A", "F", "R" }
)
2 Replies
- sevenhills
Super User
Not clear your image, post the syntax as text ...
Try this?
Monday Errors = AND (
Timesheet[Error] = "Error"
, NOT Timesheet[Mon - Comment] IN { "D", "W", "I", "A", "F", "R" }
)
- DMB90
Helper II
This works! Thank you!