RE: Macros
Hi Matthew
A macro is a record of instructions in code that enable the computer to do something automatically
So as long as the code is written correctly the computer will follow it to the letter.
As an example the following macro ask you for a name and then displays the given name in a message box:
Sub Test
Dim AName as String
AName = InputBox ("Please enter a name")
Msgbox AName
End Sub
Hope this helps
Carlos