I have a lot of data and want to create my own ranges and put anything more than 500 as out of limit I can't find any option to add default range there
This can be achieved with the help of the calculated field. You can write your own code like if-else state and get it done like
if sum(sales)>=0 AND sum(sales)<-=500 THEN ‘0-500’
else ‘Out of limit’
END