Ive only recently learnt more on Excel and im having a problem with an IF statement basically what i have in one box is a value it will range between 0-#### and i want in another box to read whether it is negligible, significant, very high or unacceptable.

The idea is: 0-5 Negligible
5-50 Significant
50-500 Very high
500+ Unacceptable

this is what i had written and its probably very wrong but hopefully someone can either help or write what i am after:

=IF(0<H8<5,Negligible,IF(5.01<H8<50,Significant,IF(50.1<H8<500,Very High,IF(H8>500,Unacceptable,Error))))


Thanks