filmov
tv
How to create a message box with an input function (3/3)

Показать описание
This video shows how to create a message box with an input function via VBA coding.
The code can be found below:
Sub Messagebox()
Dim awesome As Variant
awesome = InputBox("Type your awesome information here")
Range("A1").Value = awesome
End Sub
The code can be found below:
Sub Messagebox()
Dim awesome As Variant
awesome = InputBox("Type your awesome information here")
Range("A1").Value = awesome
End Sub