I am grateful for the interest and scope of the following:
I have the following operation:
Dim number1 As Double=76142.07
Dim number2 As Double=75990.60
Dim amount AS double
amount=number1+number2
MsgBox "amount no format"+str(amount)
MsgBox "amount with format "+str(amount,"##########.00")
the values shown in the MsgBox are different
the str function without format automatically rounds the conversions?