19 Jan You are employed at Specialty Foods, Ltd., a small international gourmet foods distributor. The company has asked you to modify the database and improve the reliability of the data ent
EX19_AC_CH10_GRADER_CAP_HW – Specialty Foods 1.1
EX19 AC CH10_GRADER CAP HW – Specialty Foods 1.1
Access Chapter 10 Grader Capstone – Specialty Foods
Project Description:
You are employed at Specialty Foods, Ltd., a small international gourmet foods distributor. The company has asked you to modify the database and improve the reliability of the data entry process. You decide to create a few macros and add a menu for the common forms and reports. You will also modify the record source of one of the reports.
Start Access. Open the downloaded Access file named Exp19_Access_Ch10_Cap_Specialty.accdb. Grader has automatically added your last name to the beginning of the filename. Save the file to the location where you are storing your files.
You will create an event-driven data macro that will populate a new field automatically each time a record is added to the table.
Open the Orders table in Datasheet view, observe the data, and then switch to Design view. Add a new field, ExpectedShipDate with the data type Date/Time below the OrderDate field. Save the table.
Create a data macro attached to the Before Change event. Use the SetField Action to populate the ExpectedShipDate in the table. The ExpectedShipDate will always be five days after the OrderDate. Save the macro. Close the macro. Save the table.
You will change a value in the first record, and then move to the second record to trigger the macro.
Switch to Datasheet view of the Orders table. Retype the OrderDate in the first record (OrderID 10248) and press DOWN ARROW. The macro will be triggered and automatically fill in the ExpectedShipDate with a date five days after the OrderDate.
Repeat the test on the second and third records (10249 and 10250). Close the table.
Open the Main Menu form in Design view. Add three buttons below the Forms label that will open the three forms in the database: Enter Customers, Enter Orders, and Enter Suppliers (in that order and to show all records). Set the first one at the 2" mark on the vertical ruler and the 1" mark on the horizontal ruler. Set the height of the button to 0.5" and the width to 1". The first button should have the caption Enter Customers with the button named as cmdEnterCustomers.
Repeat the same procedure for Enter Orders and Enter Suppliers, setting each button immediately below the one before it. For example, set Enter Orders so that its top border is set approximately at the 2.6-inch mark, and Enter Suppliers is set approximately at the 3.1-inch mark.
Add three buttons below the Reports label that will print preview the three reports in the database: Employees, Orders, and Products (in that order). Set the first one at the 2" mark on the vertical ruler and the 4" mark on the horizontal ruler. Set the height of the button to 0.5" and the width to 1". The first button should have the caption Employees with the button named as cmdEmployees.
Repeat the same procedure for Orders and Products, setting each button immediately below the one before it. Save the form, switch to Form view, and then test the buttons. Close all objects except the Main Menu form. For example, set Orders so that its top border is set approximately at the 2.6-inch mark, and Products is set approximately at the 3.1-inch mark.
Switch to Design view, add a Close Database button that exits Access to the top-right corner of the form, at the 0" mark on the vertical ruler and the 5" mark on the horizontal ruler, with a height of 0.5" and a width of 1". Name the button cmdExit.
Modify the embedded macro in the On Click property of the cmdExit button. Add a MessageBox action to the macro to display the message Please check all updates before exiting! and set the Type to Information. Move the action up to before the QuitAccess action. Change the option under QuitAccess from Prompt to Exit. Save and close the macro.
Save the form, switch to Form view, and then set the Main Menu form to display when the database opens. Test the Close Database button. Reopen the database.
You want to modify the records displayed in the Employees report. You will use an SQL statement to modify the record source so that only employees who live in London display in the report.
Open the Employees report in Design view. Open the Property Sheet and click in the Record Source property box. Type an SQL statement into the Record Source property of the report. The statement should select all fields (*) for employees where the City equals (=) London. Save the report. Test the report in Print Preview and close the report.
Close all database objects. Close the database and then exit Access. Submit the database as directed.
EX19_AC_CH10_GRADER_CAP_HW_Instructions.docx
Grader – Instructions Access 2019 Project
EX19_AC_CH10_GRADER_CAP_HW – Specialty Foods 1.1
Project Description:
You are employed at Specialty Foods, Ltd., a small international gourmet foods distributor. The company has asked you to modify the database and improve the reliability of the data entry process. You decide to create a few macros and add a menu for the common forms and reports. You will also modify the record source of one of the reports.
Steps to Perform:
Step |
Instructions |
Points Possible |
1 |
Start Access. Open the downloaded Access file named Exp19_Access_Ch10_Cap_Specialty.accdb. Grader has automatically added your last name to the beginning of the filename. Save the file to the location where you are storing your files. |
0 |
2 |
You will create an event-driven data macro that will populate a new field automatically each time a record is added to the table. Open the Orders table in Datasheet view, observe the data, and then switch to Design view. Add a new field, ExpectedShipDate with the data type Date/Time below the OrderDate field. Save the table. |
6 |
3 |
Create a data macro attached to the Before Change event. Use the SetField Action to populate the ExpectedShipDate in the table. The ExpectedShipDate will always be five days after the OrderDate. Save the macro. Close the macro. Save the table. |
10 |
4 |
You will change a value in the first record, and then move to the second record to trigger the macro. Switch to Datasheet view of the Orders table. Retype the OrderDate in the first record (OrderID 10248) and press DOWN ARROW. The macro will be triggered and automatically fill in the ExpectedShipDate with a date five days after the OrderDate. |
6 |
5 |
Repeat the test on the second and third records (10249 and 10250). Close the table. |
6 |
6 |
Open the Main Menu form in Design view. Add three buttons below the Forms label that will open the three forms in the database: Enter Customers, Enter Orders, and Enter Suppliers (in that order and to show all records). Set the first one at the 2" mark on the vertical ruler and the 1" mark on the horizontal ruler. Set the height of the button to 0.5" and the width to 1". The first button should have the caption Enter Customers with the button named as cmdEnterCustomers. |
10 |
7 |
Repeat the same procedure for Enter Orders and Enter Suppliers, setting each button immediately below the one before it. For example, set Enter Orders so that its top border is set approximately at the 2.6-inch mark, and Enter Suppliers is set approximately at the 3.1-inch mark. |
12 |
8 |
10 |
|
9 |
Repeat the same procedure for Orders and Products, setting each button immediately below the one before it. Save the form, switch to Form view, and then test the buttons. Close all objects except the Main Menu form. For example, set Orders so that its top border is set approximately at the 2.6-inch mark, and Products is set approximately at the 3.1-inch mark. |
12 |
10 |
Switch to Design view, add a Close Database button that exits Access to the top-right corner of the form, at the 0" mark on the vertical ruler and the 5" mark on the horizontal ruler, with a height of 0.5" and a width of 1". Name the button cmdExit. |
8 |
11 |
Modify the embedded macro in the On Click property of the cmdExit button. Add a MessageBox action to the macro to display the message Please check all updates before exiting! and set the Type to Information. Move the action up to before the QuitAccess action. Change the option under QuitAccess from Prompt to Exit. Save and close the macro. |
6 |
12 |
Save the form, switch to Form view, and then set the Main Menu form to display when the database opens. Test the Close Database button. Reopen the database. |
4 |
13 |
You want to modify the records displayed in the Employees report. You will use an SQL statement to modify the record source so that only employees who live in London display in the report. Open the Employees report in Design view. Open the Property Sheet and click in the Record Source property box. Type an SQL statement into the Record Source property of the report. The statement should select all fields ( *) for employees where the City equals (=) London. Save the report. Test the report in Print Preview and close the report. |
10 |
14 |
Close all database objects. Close the database and then exit Access. Submit the database as directed. |
0 |
Total Points |
100 |
Created On: 07/11/2019 1 EX19_AC_CH10_GRADER_CAP_HW – Specialty Foods 1.1
Papa_Exp19_Access_Ch10_Cap_Specialty.accdb
CategoryID | CategoryName | Description | Picture |
---|---|---|---|
1 | Beverages | Soft drinks, coffees, teas, beers, and ales | |
2 | Condiments | Sweet and savory sauces, relishes, spreads, and seasonings | |
3 | Confections | Desserts, candies, and sweet breads | |
4 | Dairy Products | Cheeses | |
5 | Grains/Cereals | Breads, crackers, pasta, and cereal | |
6 | Meat/Poultry | Prepared meats | |
7 | Produce | Dried fruit and bean curd | |
8 | Seafood | Seaweed and fish |
CustomerID | CompanyName | ContactName | Address | City | PostalCode | Country | Phone |
---|---|---|---|---|---|---|---|
BONAP | Bon app' | Laurence Lebihan | 12, rue des Bouchers | Marseille | 13008 | France | 91.24.45.40 |
CHOPS | Chop-suey Chinese | Yang Wang | Hauptstr. 29 | Bern | 3012 | Switzerland | 0452-076545 |
KOENE | Königlich Essen | Philip Cramer | Maubelstr. 90 | Brandenburg | 14776 | Germany | 0555-09876 |
LILAS | LILA-Supermercado | Carlos González | Carrera 52 con Ave. Bolívar #65-98 Llano Largo | Barquisimeto | 3508 | Venezuela | (9) 331-6954 |
RICSU | Richter Supermarkt | Michael Holz | Grenzacherweg 237 | Genève | 1203 | Switzerland | 0897-034214 |
SAVEA | Save-a-lot Markets | Jose Pavarotti | 187 Suffolk Ln. | Boise | 83720 | USA | (208) 555-8097 |
SPLIR | Split Rail Beer & Ale | Art Braunschweiger | P.O. Box 555 | Lander | 82520 | USA | (307) 555-4680 |
WHITC | White Clover Markets | Karl Jablonski | 305 – 14th Ave. S. Suite 3B | Seattle | 98128 | USA | (206) 555-4112 |
WILMK | Wilman Kala | Matti Karttunen | Keskuskatu 45 | Helsinki | 21240 | Finland | 90-224 8858 |
EmployeeID | LastName | FirstName | Title | HireDate | Address | City | PostalCode |
---|---|---|---|---|---|---|---|
1 | Davolio | Nancy | Sales Representative | 2018-05-01 | 507 – 20th Ave. E. Apt. 2A | Seattle | 98122 |
2 | Fuller | Andrew | Vice President, Sales | 2018-08-14 | 908 W. Capital Way | Tacoma | 98401 |
3 | Lorah | Ron | Sales Representative | 2015-04-01 | 722 Moss Bay Blvd. | Kirkland | 98033 |
4 | Peacock | Margaret | Sales Representative | 2014-05-03 | 4110 Old Redmond Rd. | Redmond | 98052 |
5 | Buchanan | Steven | Sales Manager | 2017-10-17 | 14 Garrett Hill | London | SW1 8JR |
6 | Suyama | Michael | Sales Representative | 2012-10-17 | Coventry House Miner Rd. | London | EC2 7JR |
7 | King | Robert | Sales Representative | 2017-01-02 | Edgeham Hollow Winchester Way | London | RG1 9SP |
8 | Callahan | Laura | Inside Sales Coordinator | 2017-03-05 | 4726 – 11th Ave. N.E. | Seattle | 98105 |
9 | Dodsworth | Anne | Sales Representative | 2016-11-15 | 7 Houndstooth Rd. | London | WG2 7LT |
ID | mSysRowId |
---|---|
1 | 6YlKDcSRQGT2H2+Tty6CEcFF2qI3l1TdZ7QD+y83d/M=-~caiUZGrf+WkImZJEGnWMsw== |
OrderID | ProductID | Quantity | Discount | Discount1 | mSysRowId |
---|---|---|---|---|---|
10248 | 11 | 12 | 0.0 | hc2jClTuVXMId8ZCvJk5lYn+Cj0jA5bchITp3JebYBo=-~8y2vlcGnfRVzsLogzhxQug== | |
10248 | 42 | 10 | 0.0 | hc2jClTuVXMId8ZCvJk5lYn+Cj0jA5bchITp3JebYBo=-~8y2vlcGnfRVzsLogzhxQug== | |
10248 | 72 | 5 | 0.0 | hc2jClTuVXMId8ZCvJk5lYn+Cj0jA5bchITp3JebYBo=-~8y2vlcGnfRVzsLogzhxQug== | |
10252 | 33 | 25 | 0.0 | 0.05 | hc2jClTuVXMId8ZCvJk5lYn+Cj0jA5bchITp3JebYBo=-~8y2vlcGnfRVzsLogzhxQug== |
10254 | 55 | 21 | 0.0 | 0.15 | hc2jClTuVXMId8ZCvJk5lYn+Cj0jA5bchITp3JebYBo=-~8y2vlcGnfRVzsLogzhxQug== |
10255 | 36 | 25 | 0.0 | 0.0 | hc2jClTuVXMId8ZCvJk5lYn+Cj0jA5bchITp3JebYBo=-~8y2vlcGnfRVzsLogzhxQug== |
10255 | 59 | 30 | 0.0 | 0.0 | hc2jClTuVXMId8ZCvJk5lYn+Cj0jA5bchITp3JebYBo=-~8y2vlcGnfRVzsLogzhxQug== |
10256 | 53 | 15 | 0.0 | 0.0 | hc2jClTuVXMId8ZCvJk5lYn+Cj0jA5bchITp3JebYBo=-~8y2vlcGnfRVzsLogzhxQug== |
10329 | 19 | 10 | 0.05 | hc2jClTuVXMId8ZCvJk5lYn+Cj0jA5bchITp3JebYBo=-~8y2vlcGnfRVzsLogzhxQug== | |
10329 | 30 | 8 | 0.05 | hc2jClTuVXMId8ZCvJk5lYn+Cj0jA5bchITp3JebYBo=-~8y2vlcGnfRVzsLogzhxQug== | |
10329 | 38 | 20 | 0.05 | hc2jClTuVXMId8ZCvJk5lYn+Cj0jA5bchITp3JebYBo=-~8y2vlcGnfRVzsLogzhxQug== | |
10329 | 56 | 12 | 0.05 | hc2jClTuVXMId8ZCvJk5lYn+Cj0jA5bchITp3JebYBo=-~8y2vlcGnfRVzsLogzhxQug== | |
10330 | 26 | 50 | 0.15 | hc2jClTuVXMId8ZCvJk5lYn+Cj0jA5bchITp3JebYBo=-~8y2vlcGnfRVzsLogzhxQug== | |
10330 | 72 | 25 | 0.15 | hc2jClTuVXMId8ZCvJk5lYn+Cj0jA5bchITp3JebYBo=-~8y2vlcGnfRVzsLogzhxQug== | |
10331 | 54 | 15 | 0.0 | hc2jClTuVXMId8ZCvJk5lYn+Cj0jA5bchITp3JebYBo=-~8y2vlcGnfRVzsLogzhxQug== | |
10607 | 7 | 45 | 0.0 | hc2jClTuVXMId8ZCvJk5lYn+Cj0jA5bchITp3JebYBo=-~8y2vlcGnfRVzsLogzhxQug== | |
10607 | 17 | 100 | 0.0 | hc2jClTuVXMId8ZCvJk5lYn+Cj0jA5bchITp3JebYBo=-~8y2vlcGnfRVzsLogzhxQug== | |
10607 | 33 | 14 | 0.0 | hc2jClTuVXMId8ZCvJk5lYn+Cj0jA5bchITp3JebYBo=-~8y2vlcGnfRVzsLogzhxQug== | |
10607 | 40 | 42 | 0.0 | hc2jClTuVXMId8ZCvJk5lYn+Cj0jA5bchITp3JebYBo=-~8y2vlcGnfRVzsLogzhxQug== | |
10607 | 72 | 12 | 0.0 | hc2jClTuVXMId8ZCvJk5lYn+Cj0jA5bchITp3JebYBo=-~8y2vlcGnfRVzsLogzhxQug
Our website has a team of professional writers who can help you write any of your homework. They will write your papers from scratch. We also have a team of editors just to make sure all papers are of HIGH QUALITY & PLAGIARISM FREE. To make an Order you only need to click Ask A Question and we will direct you to our Order Page at WriteDemy. Then fill Our Order Form with all your assignment instructions. Select your deadline and pay for your paper. You will get it few hours before your set deadline. Fill in all the assignment paper details that are required in the order form with the standard information being the page count, deadline, academic level and type of paper. It is advisable to have this information at hand so that you can quickly fill in the necessary information needed in the form for the essay writer to be immediately assigned to your writing project. Make payment for the custom essay order to enable us to assign a suitable writer to your order. Payments are made through Paypal on a secured billing page. Finally, sit back and relax. About WridemyWe are a professional paper writing website. If you have searched a question and bumped into our website just know you are in the right place to get help in your coursework. We offer HIGH QUALITY & PLAGIARISM FREE Papers. How It WorksTo make an Order you only need to click on “Order Now” and we will direct you to our Order Page. Fill Our Order Form with all your assignment instructions. Select your deadline and pay for your paper. You will get it few hours before your set deadline. Are there Discounts?All new clients are eligible for 20% off in their first Order. Our payment method is safe and secure. Hire a tutor today CLICK HERE to make your first orderRelated TagsAcademic APA Writing College Course Discussion Management English Finance General Graduate History Information Justify Literature MLA |