You can use the Abs() function of VBScript, which return you absolute value .For example abs(11.80)=11.8 and abs(11.8)=11.8 .After doing this you can compare easily .
Yo can use the Abs() function of VBScript, which return you absolute value .For example abs(11.80) =11.8 and abs(11.8)=11.8 ,So now if you want to force the calculated number to keep 2 placed to the right of the decimal ,You can easily concatenate 0 with the returned values as
x=Abs(11.8)
y=x&"0"
Now if you will see y is assigned with 11.80 . Please tell if you need further clarification .
Yo can use the Abs() function of VBScript, which return you absolute value .For example abs(11.80) =11.8 and abs(11.8)=11.8 ,So now if you want to force the calculated number to keep 2 placed to the right of the decimal ,You can easily concatenate 0 with the returned values as
x=Abs(11.8)
y=x&"0"
Now if you will see y is assigned with 11.80 . Please tell if you need further clarification .