I'm looking to use an IF statement to classify a range of numbers within 6 categories, however the numbers belonging to each category are not consecutive, thus:
Lowest = 1, 7, 13, 19
Low = 2, 8. 14. 20
Medium = 3, 9, 15, 21
High = 4, 10, 16, 21
And so on.
The problem is I have 100 cases and using an IF statement to check for all 24 numbers is a bit much (and I think is too many arguments?). I already use IF to sum up the total belonging in each category but I also want to check if an individual changes category over time and therefore need to classify each person separately.
Is there a simpler formula to check all the numbers in one go?
Bookmarks