I need to get the sum of two numbers but i do not know how
example
**what the result should be:** 1,000,000 + 2,000 = 1,002,000 **my code's result:** 1,000,000 + 2,000 = 3 It seems that my code only adds the numbers before comma (,)
My code do not compute it properly. this is my code any way
lblTotal.Text = Format(Val(lblTotal.Text), "#,##0.00")
lblVatable.Text = Format(Val(lblVatable.Text), "#,##0.00")
lblTax.Text = Format(Val(lblTax.Text), "#,##0.00")