I’m trying to use the formula below in a sheet to autofill one of several values based on a certain dollar amount/criteria. Logic: If “NAP” cell is between 2500-4999 then have target cell say “Builder’s Week”, and if “NAP” cell is between 5000-7499 then have target cell say “Green Out”…with several more options like this.
Formula I’ve tried (but coming back as UNPARSEABLE):
=IF([NAP@row] >= 2500, "Builder’s Week", [-], IF([NAP@row] >= 5000, “Green Out”, IF([NAP@row] >= 7500, “Globe Week”, IF([NAP@row] >= 10000, “Eagle”))))
Thanks, in advance, for your help. None of the many previous discussions I read seemed to address this.