Hi Everyone,
What I am trying to do is create a formula that looks at two things, the status column to check if the status is not started or draft. If it is either it needs to return a blank. If it is anything else, it needs to check the End Date column and determine what quarter it is and return the appropriate value Q1, Q2, Q3, Q4
=IFERROR(IF(OR(STATUS@row = "Not Started", STATUS@row = "Draft"), "", IF(OR(MONTH([End Date]@row) = 1, MONTH([End Date]@row) = 2, MONTH([End Date]@row) = 3), "Q1")), "")
it works for Q1,
=IFERROR(IF(OR(STATUS@row = "Not Started", STATUS@row = "Draft"), "", IF(OR(MONTH([End Date]@row) = 1, MONTH([End Date]@row) = 2, MONTH([End Date]@row) = 3), "Q1"), IF(OR(MONTH([End Date]@row) = 4, MONTH([End Date]@row) = 5, MONTH([End Date]@row) = 6), "Q2")), "")
When I start adding other Quarters, it returns #incorrect argument set. I'm super new to Smartsheets so I'd appreciate it if someone could show me where I went wrong.
Thanks!
-Chris