98.7% Of all customers recommend us, we're so confident about our results we publish all reviews and stats
View Live Stats View ReviewsForum home » Delegate support and help forum » Microsoft Excel Training and help » Macros
Macros
Resolved · Low Priority · Version 2003
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
Mon 9 Feb 2009: Automatically marked as resolved.
Training information:
See also:
Welcome. Please choose your application (eg. Excel) and then post your question. Our Microsoft Qualified trainers will then respond within 24 hours (working days). Frequently Asked Questions
Any suggestions, questions or comments? Please post in the Improve the forum thread. |
Excel tip:Cycling through Absoulte cell referencesIf you are working with formulas in excel and need to convert your formula to an absolute formula, instead on manually adding in the $dollar signs you can highlight the specific part of your formula and press the F4 key. |