[Why am i getting "formula parse error" when I try to classify the ages (column H) into groups using the following formula? And is there a better way? Thanks for your assistance:
=IF (H19<20, “0-19”, IF ((H19>=20 AND H19<40), “20-39”, IF ((H19>=40 AND H19<60), “40-59”, IF ((H19>=60 AND H19<70), “60-69”, IF (H19>=70, ">= 70", “WRONG”)))))
I was expecting to output the Age column into strings based on my category definitions.
The portions that you have formatted as
(H19>=20 AND H19<40)should be changed toAND(H19>=20, H19<40). Your final formula should then be:Alternatively: