To do that you would have to have a table with the gift levels on it which could get tricky if your gift levels change over time you would have to modify the 'levels' table every time your criteria for gift ranges changed. Your query driving what you currently have would also have to change quite a bit to handle looking up acceptable ranges from your 'levels' table.
if you pursue this you'd need a table like:
Code:
tblLevels
Lev_ID Lev_Lower Lev_Upper Lev_Label Lev_Description Lev_Order
1 0 99.99 $1 - $99 Copper 1
2 100 499.99 $100-$499 Bronze 2
3 500 999.99 $500-$1000 Iron 3
etc.