28,655 questions
Convert the values to integer
Result = CInt(number1) + CInt(number2)
In VBScript, the + operator can be used for both addition and concatenation.
If number1 and number2 are variables containing numeric values,
then the statement Result = number1 + number2 will correctly return the sum of the two numbers.