if else loop issues

else if (1000<val<=1020){

Won't work. try,
if(val > 1000 && val <= 1020)
Same for other like comparisons.