In this video new exciting video we learn how to Automate excel using Macro focusing on the following aspects:
1) What is a Macro
2) Recording Macros
3) Editing Recorded Macros
4) Writing a macro from scratch Enjoy
Message box Code
sub Messagebox()
'this VBA code will display a message box with the name Clyve in it when its played.
msgbox "Clyve"
End sub