hi,
i have a number stored in a variable strnumber
i want to check if this strnumber is between 83 and less then 99 then append 19 before it
and anything from 00 to 83 append 20 before it
so here is the code
i want between 83 and 99
any clue
thanks,
belord
i have a number stored in a variable strnumber
i want to check if this strnumber is between 83 and less then 99 then append 19 before it
and anything from 00 to 83 append 20 before it
so here is the code
Code:
if strnumber= 83 and strnumber > 99 then
strnumber="19" & strchop
elseif strnumber >= 00 then
strnumber="20" & strchop
End if
c
i want between 83 and 99
any clue
thanks,
belord
