EXERCISE TOPIC▼
ACCESS EXERCISES▼
ACCESS VBA MACROS EXERCISES▼
Access VBA Macros | Messages and variables exercise | Asking user for two numbers - displaying product
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.
You can learn how to do this exercise if you attend the course listed below!
Software ==> | Access VBA Macros (25 exercises) |
Version ==> | Access 2010 and later |
Topic ==> | Messages and variables (8 exercises) |
Level ==> | Average difficulty |
Classroom ==> | Access VBA macros |
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.
Open your existing module called modVariableCode.
Create a new procedure in this called MultiplyTwoNumbers which asks your user to type in two numbers, on successive input boxes:

What the two input boxes might look like
Your procedure should then join together various bits of text to display the product of the two numbers typed in:

What the answer might look like
You will need 3 integer variables: one to hold each of the first two numbers, and one to hold the answer.
Test your macro, then save and close the module.