Hi @63608335
The following logic should work for you (replace the example with your real names):
((user.physicalDeliveryOfficeName -eq "Office A") or (user.physicalDeliveryOfficeName -eq "Office B") or (user.physicalDeliveryOfficeName -eq "Office C") or (user.physicalDeliveryOfficeName -eq "Office D") or (user.physicalDeliveryOfficeName -eq "Office E") or (user.physicalDeliveryOfficeName -eq "Office F")) and ((user.jobTitle -eq "Title A") or (user.jobTitle -eq "Title B") or (user.jobTitle -eq "Title C"))
Try it out and let me know how it goes.
-----------------------------------------
If this is helpful please accept answer.