WISE OWL EXERCISES
VBA EXERCISES
ADVANCED VBA EXERCISES
Advanced VBA | Passing arguments exercise | Creating Outlook message with CC addresses
This exercise is provided to allow potential course delegates to choose the correct Wise Owl Microsoft training course, and may not be reproduced in whole or in part in any format without the prior written consent of Wise Owl.
The answer to the exercise will be included and explained if you attend one of more of the courses listed below!
Software ==> | Advanced VBA (33 exercises) |
Version ==> | Any MS Office versions |
Topic ==> | Passing arguments (6 exercises) |
Level ==> | Relatively easy |
Courses ==> | Fast track Excel VBA / Advanced VBA |
You need a minimum screen resolution of about 700 pixels width to see our exercises. This is because they contain diagrams and tables which would not be viewable easily on a mobile phone or small laptop. Please use a larger tablet, notebook or desktop computer, or change your screen resolution settings.
In Word, create a document and type in some text (your name would do fine).
Write a macro which will create a message in Outlook composed of the text in your document and send it to:
- The person whose email address you pass in as an argument (the TO address); and
- Optionally, the person whose email address you pass in as an optional argument (the CC address).
You may find the following excerpt of code helpful:

You will need to reference the Microsoft Outlook application first
Now write another macro which works in exactly the same way, but to which you can pass as many CC addresses as you want (including none at all) using ParamArray.
Save this document as Document which emails itself.doc, then close it down.