I am trying to build a search string in Remedy,
I am looking for all open Orders submitted more than 5 days ago, and in which the last updater is not one of the 8 members of our team.
I have the below (and yes, I know it's clumsy, I am a beginner)
(('Status*' = "Assigned") OR ('Status*' = "Pending") OR ('Status*' = "Waiting Approval") OR ('Status*' = "Planning") OR ('Status*' = "In Progress")) AND ('Submit Date' <= ($\TIMESTAMP$ - (112 * (60 * 60)))) AND ('Last Modified By' != "User 1") AND ('Last Modified By' != "User 2") AND ('Last Modified By' != "User 3") AND ('Last Modified By' != "User 4") AND ('Last Modified By' != "User 5") AND ('Last Modified By' != "User 6") AND ('Last Modified By' != "User 7") AND ('Last Modified By' != "User 8")
I would appreciate if someone could take the time to give me a hand.