This is a snippet from a book I am reading:
Sub VariantDemo()
MyVar = True
MyVar = MyVar * 100
MyVar = MyVar / 4
MyVar = "Answer: " & MyVar
MsgBox MyVar
End Sub
In the answer box it says "Answer: -25"?, but why do we have the minus? When I calculate the value directly in Excel, the value is 25.