Write an program using message box and arithmetic expression
Answers
Answered by
0
Answer:
MsgBox
A simple message. MsgBox "This is fun" Result when you click the command button on the sheet:
A little more advanced message. First, enter a number into cell A1. MsgBox "Entered value is " & Range("A1").Value. Result when you click the command button on the sheet: ...
To start a new line in a message, use vbNewLine.
Similar questions