WISE OWL EXERCISES
ACCESS EXERCISES
ACCESS VBA MACROS EXERCISES
Access VBA Macros | Recordsets exercise | Adding toy, checking if already exists
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 the course listed below!
Software ==> | Access VBA Macros (25 exercises) |
Version ==> | Access 2010 and later |
Topic ==> | Recordsets (3 exercises) |
Level ==> | Average difficulty |
Course ==> | 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.
Have a look at the tblProduct table - it contains a list of possible gifts (and has nothing to do with any of the other tables in this database!):

Something for everyone here ...
Create a new module called modProducts, and in this a procedure calledAddToyWithGivenName which asks the user for the name of a new toy:

Use the InputBox function, and store the toy chosen in a variable
Extend your macro so that it stores the name of this new toy as a new record in the tblProduct table, using the AddNew method.
If you have time, modify your macro so that if you type in a toy whose name already exists, you get a warning message and the duplicate toy name is not added:

You need to loop over all the records in the table, checking for each that its name isn't the same as the toy you've just entered
If you get all of this working, close your form and module and breathe a deep sigh of satisfaction!