Business Productivity Tools
Multiple
Worksheet Practice
Office 2007 instructions
are in Red. Instructions specific to older versions are in Blue.
Create
a form to track souvenir sales, edit it for each quarter, and create a year-end
summary. When finished, print the Summary worksheet in mirror view. Submit the
printout to the instructor.
Items
sold = [Starting Inventory + Purchases – Ending Inventory.] Use an IF function
to decide when to order more inventory. [IF (Starting Inv <100, order 144
more, if not, order zero more)]
Office 2007 – Look in the Formulas Tab, Functions Group for the functions
dialog box.The large icon shows all of the functions. Other icons show the
functions by categories.
Build the Generic Form
Office 2007 – Formatting Options are found on the Home Tab, in the
Font, Alignment, and Number Groups
|
|
A |
B |
C |
D |
E |
F |
|
1 |
Souvenir
Sales |
|||||
|
2 |
|
|||||
|
3 |
Item |
Units |
Starting
Inv |
Purchases |
Ending
Inv |
Items
Sold |
|
4 |
Mugs |
Each |
|
=IF(C4<100,144,0) |
|
=C4+D4-E4 |
|
5 |
Shirts |
Each |
|
=IF(C5<100,144,0) |
|
=C5+D5-E5 |
|
6 |
Posters |
Each |
|
=IF(C6<100,144,0) |
|
=C6+D6-E6 |
|
7 |
CD’s |
Each |
|
=IF(C7<100,144,0) |
|
=C7+D7-E7 |
|
8 |
Caps |
Each |
|
=IF(C8<100,144,0) |
|
=C8+D8-E8 |
Complete the First Quarter (Q1) worksheet
|
|
A |
B |
C |
D |
E |
F |
|
1 |
Souvenir
Sales |
|||||
|
2 |
Quarter 1 |
|||||
|
3 |
Item |
Units |
Starting
Inv |
Purchases |
Ending
Inv |
Items
Sold |
|
4 |
Mugs |
Each |
260 |
=IF(C4<100,144,0) |
52 |
=C4+D4-E4 |
|
5 |
Shirts |
Each |
160 |
=IF(C5<100,144,0) |
104 |
=C5+D5-E5 |
|
6 |
Posters |
Each |
80 |
=IF(C6<100,144,0) |
64 |
=C6+D6-E6 |
|
7 |
CD’s |
Each |
100 |
=IF(C7<100,144,0) |
96 |
=C7+D7-E7 |
|
8 |
Caps |
Each |
60 |
=IF(C8<100,144,0) |
132 |
=C8+D8-E8 |
To
write formulas that refer to cells in other worksheets, include the name of the
other worksheet follow by an exclamation mark in your cell reference. For
example: =Q2!E4 refers to cell E4 in the Q2 worksheet.
Complete the Second Quarter (Q2) worksheet
Complete the Summary worksheet.
|
|
A |
B |
C |
D |
E |
F |
|
1 |
Souvenir
Sales |
|||||
|
2 |
Mid-Year
Summary – My Name |
|||||
|
3 |
Item |
Units |
Starting
Inv |
Purchases |
Ending
Inv |
Items
Sold |
|
4 |
Mugs |
Each |
=Q1!C4 |
|
=Q2!E4 |
=C4+D4-E4 |
|
5 |
Shirts |
Each |
=Q1!C5 |
|
=Q2!E5 |
=C5+D5-E5 |
|
6 |
Posters |
Each |
=Q1!C6 |
|
=Q2!E6 |
=C6+D6-E6 |
|
7 |
CD’s |
Each |
=Q1!C7 |
|
=Q2!E7 |
=C7+D7-E7 |
|
8 |
Caps |
Each |
=Q1!C8 |
|
=Q2!E8 |
=C8+D8-E8 |
Your manager asks for more information on the
Mid - Year Summary worksheet.
Optional