I have two string variable A & B that contains Data value,if I check the Less condition for two variable it show an error "NumberFormatException".Pls advise where it is problem.my code is below
A = "2011-06-01"
B = "2011-06-21"
if A < B Then
" Error Message : NumberFormatException"
End if
A = "2011-06-01"
B = "2011-06-21"
if A < B Then
" Error Message : NumberFormatException"
End if