Yes well, relatively easy ... a few options though....
Do you want "standard" 100 brackets like you listed or will it change starting perhaps at 100 but ending at 20000-25000?
Easiest and "most flexible" way is to make a table with 3 columns: StartNumber, EndNumber, BracketText
Then in a query simply add this table and your source table with numbers. DO NOT add a relationship between the tables, instead
Where Number >= StartNumber and Number < EndNumber
Another alternative may be to have a table that lists all 25000 numbers and their assigned brackets (thus only two columns) now you can make a simple join between the two tables, thoug its a bit harder to maintain if the brackets ever need changing.... it may be a little simpler to create
I hope this is clear enough?