I am trying to get Google Sheets to identify a category in one column based on the value range in another column. In other words, the value will fall into one of 6 categories depending on the number. I'm trying to use the IFS formula below but its giving an error "IFS expects all arguments after position 0 to be in pairs. Can someone please tell me what I'm doing wrong?
=IFS(G4>80000, "HC", G4>64000, "Cat1", G4>32000, "Cat2", G4>16000, "Cat3", G4>8000, "Cat4", G4<8000, "NR")