I am having a problem figuring out how to get this to work.
date1 = 1/1/90
dateMin = 4/3/90
dateMax = 2/16/01
if (date1 < dateMin) then
Error 1
elseif (date1 > dateMax) then
Error 2
end if
This should be performing Error 1, but it is performing Error 2. Does anyone have any suggestions as to what the problem might be?
Chris
date1 = 1/1/90
dateMin = 4/3/90
dateMax = 2/16/01
if (date1 < dateMin) then
Error 1
elseif (date1 > dateMax) then
Error 2
end if
This should be performing Error 1, but it is performing Error 2. Does anyone have any suggestions as to what the problem might be?
Chris