Hey,
Use a custom criteria in the cell that you want to data validate (Lets use E1 for this example):
Put the formula as:
=OR(E1="NA",AND(E1>0,E1<100))
Note that this will not allow 0 or 100, but will allow any number inbetween. this can be easily changed by amending the equality symbol to >= & <= respectively.