I am working with credit score data and need to break out the scores in 20pts increments to do some summary statistics.
I have 43K rows of data all which have a credit score ranging from 300-880.
What I would like to do is add a field that says what range the score is in so I can do a group by....
| RANGE | ACCT # | CREDIT SCORE | CURRENT BAL | RATE |
| 640-659 | 0123 | 652 | 21965 | 8.01 |
| 740-759 | 0456 | 749 | 47658 | 6.45 |
| 320-339 | 0789 | 326 | 11697 | 9.99 |
Is there a way to easily add a range field without inputting a file with the 30 different range values, and then a extremely long IF THEN functions that calls the score to the range?