Hi,
I'm trying to check a box if Sales Status equals either "Deployment Prep Call - Scheduling", "Deployment Prep Call - Scheduled" or "Verbal Agreement"
The formula works for one of the three choices:
=IF([Sales Status]@row = "Verbal Agreement", 1)
However, I'm getting an INVALID DATA TYPE error when I have all three choices in my formula:
=IF([Sales Status]@row, OR(@cell = "Deployment Prep Call - Scheduling", @cell = "Deployment Prep Call - Scheduled", @cell = "Verbal Agreement", 1))
Thanks for your help!