SlideShare a Scribd company logo
A Skills Approach: Excel 2013 Chapter 3: Using Formulas and
Functions
1 | Page skill review 3.1 Last Updated 4/3/15
skill review 3.1
In this project, you will complete a staff billing workbook
similar to the one you worked on in Chapter 1. This
worksheet is more complicated and uses a variety of formulas to
calculate information about each staff member’s
weekly billing and to generate client bills from the staff hours.
As you work on the Marshall Hours worksheet, you
can use the Luz Hours or Stevens Hours worksheet as a guide.
This is a long project. Be sure to save your work often!
Skills needed to complete this project:
ing Minimum and Maximum Values
the Name Manager
1. Open the start file EX2013-SkillReview-3-1.The file will be
renamed automatically to include your
name. Change the project file name if directed to do so by your
instructor, and save it.
2. If the workbook opens in Protected View, click the Enable
Editing button in the Message Bar at
the top of the workbook.
3. The Luz Hours and Stevens Hours worksheets are completed,
but they contain errors. You’ll need to fix
the errors before working on the Marshall Hours worksheet.
a. Click the Luz Hours sheet tab.
b. Click cell C4.
c. Notice the #NAME? error. Move your mouse over the Smart
Tag icon to display a tool tip
describing the possible error—The formula contains
unrecognized text.
d. The formula =VLOOKUP(C3,BillableRates,4,FALSE)
references the named range
BillableRates. That name has not yet been defined. That’s what
is causing the error.
4. Billable rates are kept in the Rates worksheet. Create the
name BillableRates to use in formulas
throughout the workbook.
a. Click the Rates sheet tab.
b. Select cells A3:D5.
c. Type BillableRates in the Name box.
d. Press Enter.
Step 1
Download
start file
A Skills Approach: Excel 2013 Chapter 3: Using Formulas and
Functions
2 | Page skill review 3.1 Last Updated 4/3/15
5. Return to the Luz Hours worksheet. Notice all the errors have
been fixed. Now you can move on to
completing the Marshall Hours sheet.
6. Enter a formula in cell C2 to display Marshall’s full name in
the format Bob Smith. Staff names are
kept in the Rates worksheet.
a. Click the Marshall Hours sheet tab, and click cell C2.
b. On the Formulas tab, in the Function Library group, click the
Text button, and select CONCATENATE.
c. Click the Rates sheet tab. If necessary, position the Function
Arguments dialog so you can click the
sheet tabs.
d. Click cell C3 to enter the cell reference in the Text1
argument box.
e. Press TAB to move to the Text2 argument box.
f. Type " " to place a space between the first and last names.
g. Press TAB to move to the Text3 argument box.
h. Click the Rates tab again.
i. Click cell B3 to enter the text reference in the Text3 argument
box.
j. Click OK. The completed formula should look like this:
=CONCATENATE(Rates!C3," ",Rates!B3)
7. Enter a formula in cell C4 to look up Marshall’s current
billable rate. Use the employee number as
the lookup value.
a. Click cell C4.
b. On the Formulas tab, in the Function Library group, click the
Lookup & Reference button, and
select VLOOKUP.
c. Click cell C3 to enter it in the Lookup_value argument box.
d. Type BillableRates in the Table_array argument box.
e. The rates are located in the fourth column of the lookup
table. Type 4 in the Col_index_num
argument box.
f. Ensure that the function will return only an exact match. Type
false in the Range_lookup
argument box.
g. Click OK. The completed formula should look like this:
=VLOOKUP(C3,BillableRates,4,FALSE)
8. Enter formulas in cells B17:H17 to calculate the number of
clients served each day.
a. Click cell B17.
b. Type =COU
c. Double-click COUNT in the Formula AutoComplete list.
d. Click cell B9 and drag to cell B12.
e. Press Enter. The completed formula should look like this:
=COUNT(B9:B12)
f. Copy the formula in cell B17 to cells C17:H17. Use any
method you want.
A Skills Approach: Excel 2013 Chapter 3: Using Formulas and
Functions
3 | Page skill review 3.1 Last Updated 4/3/15
9. Enter a formula in cell H19 to calculate the average daily
billable hours (B13:H13).
a. Click cell H19.
b. Type =AV and then double-click AVERAGE in the Formula
AutoComplete list.
c. Click cell B13 and drag to cell H13.
d. Press Enter. The completed formula should look like this:
=AVERAGE(B13:H13)
10. Enter a formula in cell H20 to calculate the total billable
hours for the week (B13:H13).
a. Click cell H20.
b. Type =SU and then double-click SUM in the Formula
AutoComplete list.
c. Click cell B13 and drag to cell H13.
d. Press Enter. The completed formula should look like this:
=SUM(B13:H13)
11. Enter a formula in cell H22 to calculate the lowest daily bill
for the week (B15:H15).
a. Click cell H22.
b. Type =MIN( and then click cell B15 and drag to cell H15.
c. Press [Enter]. The completed formula should look like this:
=MIN(B15:H15)
12. Enter a formula in cell H23 to calculate the highest daily
bill for the week.
a. Click cell H23.
b. Type =MAX( and then click cell B15 and drag to cell H15.
c. Press Enter. The completed formula should look like this:
=MAX(B15:H15)
13. Each staff member is required to log a minimum number of
billable hours per week. Enter a formula
in cell H3 using an IF statement to display “yes” if the total
billable hours for the week (cell H20) is
greater than or equal to the required hours (cell H2) and “no” if
they are not.
a. Click cell H3.
b. On the Formulas tab, in the Function Library group, click
Logical.
c. Click IF.
d. If necessary, move the Function Arguments dialog to the side
so you can see the
worksheet data.
e. In the Logical_test argument box, type: H20>=H2
f. In the Value_if_true argument box, type: yes
g. In the Value_if_false argument box, type: no
h. Click OK. The completed formula should look like this:
=IF(H20>=H2,"yes","no")
14. Display your formulas temporarily to check for accuracy.
a. On the Formulas tab, in the Formula Auditing group, click
the Show Formulas button.
b. When you are ready to continue, hide the formulas and
display formula values by clicking the
Show Formulas button again.
15. Now that the worksheet for Marshall is complete, you can
generate a bill for the Smith client for the
week. Click the Smith Bill sheet tab.
A Skills Approach: Excel 2013 Chapter 3: Using Formulas and
Functions
4 | Page skill review 3.1 Last Updated 4/3/15
16. All bills are due thirty days from the date the bill was
created. Enter a formula in cell C2 to calculate
the due date using the TODAY function.
a. Double-click cell C2.
b. Type the formula: =TODAY()+30
c. Press Enter.
17. Enter formulas to reference the number of hours each staff
member billed for Smith.
a. Click cell B6 and type = to begin the formula.
b. Click the Marshall Hours sheet, and click cell J12.
c. Press Enter. The completed formula should look like this:
='Marshall Hours'!J12
d. Type = to begin the next formula in cell B7.
e. Click the Stevens Hours sheet, and click cell J12.
f. Press Enter. The completed formula should look like this:
='Stevens Hours'!J12
g. Type = to begin the next formula in cell B8.
h. Click the Luz Hours sheet, and click cell J12.
i. Press Enter. The completed formula should look like this:
='Luz Hours'!J12
18. There are errors in the Rate and Bill Amount columns. Use
your error checking skills to track down
the cause of the error.
a. On the Formulas tab, in the Formula Auditing group, click
the Error Checking button to open the
Error Checking dialog.
b. After you’ve reviewed the first error, click the Next button to
go to the next error. Continue
reviewing each error and clicking Next until you receive the
message that the error check is
complete for the entire sheet. Click OK.
19. Did you notice that every error in the worksheet is a “value
not available” error? You probably need
to dig deeper to find the root cause of the problem.
a. Click cell D6 and look at the formula in the formula bar:
=B6*C6
b. Display the Trace Precedent and Trace Dependent arrows for
this cell. On the Formulas tab, in
the Formula Auditing group, click both the Trace Precedents
button and the Trace
Dependents button.
c. You can see that the problem appears to start in the precedent
cell C6. Hide the arrows for cell
D6 by clicking the Remove Arrows button, and then click cell
C6 and click the Trace
Precedents button.
d. Notice that one of the precedent arrows for cell C6 refers to
another worksheet. Double-click
the dashed precedent arrow line.
e. In the Go To dialog, click the worksheet reference and then
click the OK button.
A Skills Approach: Excel 2013 Chapter 3: Using Formulas and
Functions
5 | Page skill review 3.1 Last Updated 4/3/15
20. The link takes you to the Rates sheet where cells A2:D5 are
selected. Notice that the
Name box displays the name ClientRates. (Depending on your
screen resolution, the name may be
slightly cut-off.) The formula in cell C6 is a lookup formula
that uses the named range ClientRates as
the Table_array argument. There are two problems with the
definition
of the named range: It includes the label row (A2:D2), and it
includes the employee
number data (A2:A5).
a. On the Formulas tab, in the Defined Names group, click the
Name Manager button.
b. Click the ClientRates name and review the cell range in the
Refers to box. The range is incorrect.
The ClientRates name should refer to cells B2:D5 on the Rates
sheet.
c. Edit the range listed in the Refers to box to:
=Rates!$B$2:$D$5
d. Click the Close button to close the Name Manager.
e. When Excel asks if you want to save the changes to the name
reference, click Yes.
21. Now that the total bill amount is computing correctly, you
can enter a formula in cell D14 to give the
client the option of a monthly payment plan. You are authorized
to offer a 6-month payment plan at
a 2% annual percentage rate. Use cell references in the formula.
a. If necessary, click the Smith Bill sheet.
b. Click cell D14.
c. On the Formulas tab, in the Function Library group, click the
Financial button.
d. Scroll down the list, and click PMT.
e. In the Function Arguments dialog, enter the Rate argument:
D13/12
f. Click in the Nper argument box, and then click cell D12 (the
number of payments).
g. Click in the Pv argument box, and then click cell D9 (the
present value of the loan).
h. In the Function Arguments dialog, click OK. The completed
formula should look like this:
=PMT(D13/12,D12,D9)
i. The monthly payment amount appears as a negative number.
That might be confusing to the
client. Modify the formula so the result appears as a positive
number.
j. Double-click cell D14 and type – between = and PMT.
k. Press Enter. The final formula should look like this: = –
PMT(D13/12,D12,D9)
22. Save and close the workbook.
23. Upload and save your project file.
24. Submit project for grading.
Step 2
Upload &
Save
Step 3
Grade my
Project
Smith BillClient BillDue DateClient NameSmithStaff
MembersHours BilledRateBill
AmountMarshallERROR:#N/AERROR:#N/AStevensERROR:#N/
AERROR:#N/ALuzERROR:#N/AERROR:#N/ATotalERROR:#N
/APayment Plan Option # of Months6APR2%Monthy Payment
Marshall HoursLegal Staff Billable Hours LogEmployee
NameRequired billable hours per week:35Employee
Number265Weekly requirement met?Billable RateDates
WorkedMonTueWedThuFriSatSunWeekly total per
client1/14/131/15/131/16/131/17/131/18/131/19/131/20/13Clien
tsAturo2.002.503.501.002.0011.00Hudson3.503.500.502.259.75
Proctor2.252.252.252.252.2511.25Smith3.503.503.5010.50Total
Billable Hours Per Day7.758.255.756.256.754.253.50Daily Bill
$ - 0$ - 0$ - 0$ - 0$ - 0$ - 0$ - 0Bill Total for Week$
- 0# of Clients Served Each DayAverage Daily Billable
HoursTotal Billable Hours for WeekLowest Daily Bill this
WeekHighest Daily Bill this Week
Luz HoursLegal Staff Billable Hours LogEmployee NameMaria
LuzRequired billable hours per week:35Employee
Number7896Weekly requirement met?yesBillable
RateERROR:#NAME?Dates
WorkedMonTueWedThuFriSatSunWeekly total per
client1/14/131/15/131/16/131/17/131/18/131/19/131/20/13Clien
tsAturo2.000.503.501.002.009.00Hudson1.001.001.001.001.001.
006.00Proctor2.252.252.252.252.252.2513.50Smith2.502.502.50
2.502.5012.50Total Billable Hours Per
Day5.255.756.259.256.757.75- 0Daily Bill
ERROR:#NAME?ERROR:#NAME?ERROR:#NAME?ERROR:#
NAME?ERROR:#NAME?ERROR:#NAME?ERROR:#NAME?Bil
l Total for WeekERROR:#NAME?# of Clients Served Each
Day3344440Average Daily Billable Hours5.86Total Billable
Hours for Week41.00Lowest Daily Bill this
WeekERROR:#NAME?Highest Daily Bill this
WeekERROR:#NAME?
Stevens HoursLegal Staff Billable Hours LogEmployee
NameWilliam StevensRequired billable hours per
week:35Employee Number1554Weekly requirement
met?noBillable RateERROR:#NAME?Dates
WorkedMonTueWedThuFriSatSunWeekly total per
client1/14/131/15/131/16/131/17/131/18/131/19/131/20/13Clien
tsAturo2.001.000.501.004.50Hudson3.503.507.00Proctor2.252.2
52.252.252.2511.25Smith2.504.256.75Total Billable Hours Per
Day7.755.752.755.757.50- 0- 0Daily Bill
ERROR:#NAME?ERROR:#NAME?ERROR:#NAME?ERROR:#
NAME?ERROR:#NAME?ERROR:#NAME?ERROR:#NAME?Bil
l Total for WeekERROR:#NAME?# of Clients Served Each
Day3322300Average Daily Billable Hours4.21Total Billable
Hours for Week29.50Lowest Daily Bill this
WeekERROR:#NAME?Highest Daily Bill this
WeekERROR:#NAME?
RatesCurrent Hourly RatesEmployee #Last NameFirst
NameRate265MarshallDavid$ 501554StevensWilliam$
857896LuzMaria$ 150CONFIDENTIAL

More Related Content

Similar to A Skills Approach Excel 2013 Chapter 3 Using Formulas and Fu.docx

SLMQ1Senior HS EmpTechModule 4.2 Spreadsheet
SLMQ1Senior HS EmpTechModule 4.2 SpreadsheetSLMQ1Senior HS EmpTechModule 4.2 Spreadsheet
SLMQ1Senior HS EmpTechModule 4.2 Spreadsheet
NicoleBitgue
 
The Wear-Ever Shoes company maintains inventory data and custome.docx
The Wear-Ever Shoes company maintains inventory data and custome.docxThe Wear-Ever Shoes company maintains inventory data and custome.docx
The Wear-Ever Shoes company maintains inventory data and custome.docx
pelise1
 
Gl13 m6-c1-presentation
Gl13 m6-c1-presentationGl13 m6-c1-presentation
Gl13 m6-c1-presentation
Tracie King
 
Excel Intro Part2 2007
Excel Intro Part2 2007Excel Intro Part2 2007
Excel Intro Part2 2007simply_coool
 
functions_in_microsoft_excel_2003
 functions_in_microsoft_excel_2003 functions_in_microsoft_excel_2003
functions_in_microsoft_excel_2003
gaurav jain
 
A Skills Approach Excel 2016 Chapter 8 Exploring Advanced D.docx
A Skills Approach Excel 2016  Chapter 8 Exploring Advanced D.docxA Skills Approach Excel 2016  Chapter 8 Exploring Advanced D.docx
A Skills Approach Excel 2016 Chapter 8 Exploring Advanced D.docx
daniahendric
 
Healthcare professionals face ethical questions every day. This is
Healthcare professionals face ethical questions every day. This isHealthcare professionals face ethical questions every day. This is
Healthcare professionals face ethical questions every day. This is
SusanaFurman449
 
A_CH07_EXPV2_H1_Instructions.docxOffice 2013 – myitlabgrader .docx
A_CH07_EXPV2_H1_Instructions.docxOffice 2013 – myitlabgrader .docxA_CH07_EXPV2_H1_Instructions.docxOffice 2013 – myitlabgrader .docx
A_CH07_EXPV2_H1_Instructions.docxOffice 2013 – myitlabgrader .docx
ikirkton
 
A Skills Approach Excel 2016 Chapter 4 Formatting Worksheets.docx
A Skills Approach Excel 2016 Chapter 4 Formatting Worksheets.docxA Skills Approach Excel 2016 Chapter 4 Formatting Worksheets.docx
A Skills Approach Excel 2016 Chapter 4 Formatting Worksheets.docx
ransayo
 
CASE 1 Data File needed for this Case Problem Modem.xlsx.docx
CASE 1  Data File needed for this Case Problem Modem.xlsx.docxCASE 1  Data File needed for this Case Problem Modem.xlsx.docx
CASE 1 Data File needed for this Case Problem Modem.xlsx.docx
tidwellveronique
 
Excel Formulas Functions
Excel Formulas FunctionsExcel Formulas Functions
Excel Formulas Functionssimply_coool
 
IMPORTANT If you are a Canadian user, be sure to verify that your
IMPORTANT If you are a Canadian user, be sure to verify that yourIMPORTANT If you are a Canadian user, be sure to verify that your
IMPORTANT If you are a Canadian user, be sure to verify that your
he45mcurnow
 
Sheet1C.I.S. 150Excel for Finance MajorsFALL 20131230PM-150PM  T.docx
Sheet1C.I.S. 150Excel for Finance MajorsFALL 20131230PM-150PM  T.docxSheet1C.I.S. 150Excel for Finance MajorsFALL 20131230PM-150PM  T.docx
Sheet1C.I.S. 150Excel for Finance MajorsFALL 20131230PM-150PM  T.docx
lesleyryder69361
 
These instructions are compatible with both Microsoft Windows and Ma.docx
These instructions are compatible with both Microsoft Windows and Ma.docxThese instructions are compatible with both Microsoft Windows and Ma.docx
These instructions are compatible with both Microsoft Windows and Ma.docx
barbaran11
 
Microsoft excel part 1
Microsoft excel part 1Microsoft excel part 1
Microsoft excel part 1
Hoboken Public Library
 

Similar to A Skills Approach Excel 2013 Chapter 3 Using Formulas and Fu.docx (20)

SLMQ1Senior HS EmpTechModule 4.2 Spreadsheet
SLMQ1Senior HS EmpTechModule 4.2 SpreadsheetSLMQ1Senior HS EmpTechModule 4.2 Spreadsheet
SLMQ1Senior HS EmpTechModule 4.2 Spreadsheet
 
The Wear-Ever Shoes company maintains inventory data and custome.docx
The Wear-Ever Shoes company maintains inventory data and custome.docxThe Wear-Ever Shoes company maintains inventory data and custome.docx
The Wear-Ever Shoes company maintains inventory data and custome.docx
 
Gl13 m6-c1-presentation
Gl13 m6-c1-presentationGl13 m6-c1-presentation
Gl13 m6-c1-presentation
 
Excel Intro Part2 2007
Excel Intro Part2 2007Excel Intro Part2 2007
Excel Intro Part2 2007
 
functions_in_microsoft_excel_2003
 functions_in_microsoft_excel_2003 functions_in_microsoft_excel_2003
functions_in_microsoft_excel_2003
 
Excel chapter-8
Excel chapter-8Excel chapter-8
Excel chapter-8
 
A Skills Approach Excel 2016 Chapter 8 Exploring Advanced D.docx
A Skills Approach Excel 2016  Chapter 8 Exploring Advanced D.docxA Skills Approach Excel 2016  Chapter 8 Exploring Advanced D.docx
A Skills Approach Excel 2016 Chapter 8 Exploring Advanced D.docx
 
Excel Tips For Accountants
Excel Tips For AccountantsExcel Tips For Accountants
Excel Tips For Accountants
 
Healthcare professionals face ethical questions every day. This is
Healthcare professionals face ethical questions every day. This isHealthcare professionals face ethical questions every day. This is
Healthcare professionals face ethical questions every day. This is
 
A_CH07_EXPV2_H1_Instructions.docxOffice 2013 – myitlabgrader .docx
A_CH07_EXPV2_H1_Instructions.docxOffice 2013 – myitlabgrader .docxA_CH07_EXPV2_H1_Instructions.docxOffice 2013 – myitlabgrader .docx
A_CH07_EXPV2_H1_Instructions.docxOffice 2013 – myitlabgrader .docx
 
A Skills Approach Excel 2016 Chapter 4 Formatting Worksheets.docx
A Skills Approach Excel 2016 Chapter 4 Formatting Worksheets.docxA Skills Approach Excel 2016 Chapter 4 Formatting Worksheets.docx
A Skills Approach Excel 2016 Chapter 4 Formatting Worksheets.docx
 
CASE 1 Data File needed for this Case Problem Modem.xlsx.docx
CASE 1  Data File needed for this Case Problem Modem.xlsx.docxCASE 1  Data File needed for this Case Problem Modem.xlsx.docx
CASE 1 Data File needed for this Case Problem Modem.xlsx.docx
 
Excel chapter-4
Excel chapter-4Excel chapter-4
Excel chapter-4
 
Excel chapter-6
Excel chapter-6Excel chapter-6
Excel chapter-6
 
Excel Formulas Functions
Excel Formulas FunctionsExcel Formulas Functions
Excel Formulas Functions
 
IMPORTANT If you are a Canadian user, be sure to verify that your
IMPORTANT If you are a Canadian user, be sure to verify that yourIMPORTANT If you are a Canadian user, be sure to verify that your
IMPORTANT If you are a Canadian user, be sure to verify that your
 
Sheet1C.I.S. 150Excel for Finance MajorsFALL 20131230PM-150PM  T.docx
Sheet1C.I.S. 150Excel for Finance MajorsFALL 20131230PM-150PM  T.docxSheet1C.I.S. 150Excel for Finance MajorsFALL 20131230PM-150PM  T.docx
Sheet1C.I.S. 150Excel for Finance MajorsFALL 20131230PM-150PM  T.docx
 
These instructions are compatible with both Microsoft Windows and Ma.docx
These instructions are compatible with both Microsoft Windows and Ma.docxThese instructions are compatible with both Microsoft Windows and Ma.docx
These instructions are compatible with both Microsoft Windows and Ma.docx
 
OpenCastLabs Excel chapter-2
OpenCastLabs Excel chapter-2OpenCastLabs Excel chapter-2
OpenCastLabs Excel chapter-2
 
Microsoft excel part 1
Microsoft excel part 1Microsoft excel part 1
Microsoft excel part 1
 

More from annetnash8266

writea500-worddefinitioness.docx
writea500-worddefinitioness.docxwritea500-worddefinitioness.docx
writea500-worddefinitioness.docx
annetnash8266
 
Writea minimum 300 word reflection in which you compare and.docx
Writea minimum 300 word reflection in which you compare and.docxWritea minimum 300 word reflection in which you compare and.docx
Writea minimum 300 word reflection in which you compare and.docx
annetnash8266
 
Writea draft of the paper on case tools and include the followin.docx
Writea draft of the paper on case tools and include the followin.docxWritea draft of the paper on case tools and include the followin.docx
Writea draft of the paper on case tools and include the followin.docx
annetnash8266
 
Write  To complete the assignment, open the OUTLINE ATTACHMENT fi.docx
Write  To complete the assignment, open the OUTLINE ATTACHMENT fi.docxWrite  To complete the assignment, open the OUTLINE ATTACHMENT fi.docx
Write  To complete the assignment, open the OUTLINE ATTACHMENT fi.docx
annetnash8266
 
Write your proposal based on the criterias listed below Pr.docx
Write your proposal based on the criterias listed below Pr.docxWrite your proposal based on the criterias listed below Pr.docx
Write your proposal based on the criterias listed below Pr.docx
annetnash8266
 
Write a 350- to no more than 700-word paper using APA format.D.docx
Write a 350- to no more than 700-word paper using APA format.D.docxWrite a 350- to no more than 700-word paper using APA format.D.docx
Write a 350- to no more than 700-word paper using APA format.D.docx
annetnash8266
 
Write a 350- to 700-word paper in which you investigate the interr.docx
Write a 350- to 700-word paper in which you investigate the interr.docxWrite a 350- to 700-word paper in which you investigate the interr.docx
Write a 350- to 700-word paper in which you investigate the interr.docx
annetnash8266
 
Write a 350 word analysis about juvenile attitudes toward poli.docx
Write a 350 word analysis about juvenile attitudes toward poli.docxWrite a 350 word analysis about juvenile attitudes toward poli.docx
Write a 350 word analysis about juvenile attitudes toward poli.docx
annetnash8266
 
Write a 350- to 700-word paper in which you do the followingExp.docx
Write a 350- to 700-word paper in which you do the followingExp.docxWrite a 350- to 700-word paper in which you do the followingExp.docx
Write a 350- to 700-word paper in which you do the followingExp.docx
annetnash8266
 
Write a 350- to 700- word response to the following questionsHo.docx
Write a 350- to 700- word response to the following questionsHo.docxWrite a 350- to 700- word response to the following questionsHo.docx
Write a 350- to 700- word response to the following questionsHo.docx
annetnash8266
 
Write a 1,400- to 1,750 word APA format paper regarding a so.docx
Write a 1,400- to 1,750 word APA format paper regarding a so.docxWrite a 1,400- to 1,750 word APA format paper regarding a so.docx
Write a 1,400- to 1,750 word APA format paper regarding a so.docx
annetnash8266
 
Write a 350- to 500-word summary in which you answer the following.docx
Write a 350- to 500-word summary in which you answer the following.docxWrite a 350- to 500-word summary in which you answer the following.docx
Write a 350- to 500-word summary in which you answer the following.docx
annetnash8266
 
Write a 300- to 350-word response to the followingWhen thinki.docx
Write a 300- to 350-word response to the followingWhen thinki.docxWrite a 300- to 350-word response to the followingWhen thinki.docx
Write a 300- to 350-word response to the followingWhen thinki.docx
annetnash8266
 
WRITE A 2-page paper on the following questions. Your answers must.docx
WRITE A 2-page paper on the following questions. Your answers must.docxWRITE A 2-page paper on the following questions. Your answers must.docx
WRITE A 2-page paper on the following questions. Your answers must.docx
annetnash8266
 
Write a 1- to 2-page report for the Director of IT describing .docx
Write a 1- to 2-page report for the Director of IT describing .docxWrite a 1- to 2-page report for the Director of IT describing .docx
Write a 1- to 2-page report for the Director of IT describing .docx
annetnash8266
 
Write a 1,400- to 2,100-word paper in which you assess criminal ju.docx
Write a 1,400- to 2,100-word paper in which you assess criminal ju.docxWrite a 1,400- to 2,100-word paper in which you assess criminal ju.docx
Write a 1,400- to 2,100-word paper in which you assess criminal ju.docx
annetnash8266
 
Write a 1,750-word paper that includes the following(UNITED.docx
Write a 1,750-word paper that includes the following(UNITED.docxWrite a 1,750-word paper that includes the following(UNITED.docx
Write a 1,750-word paper that includes the following(UNITED.docx
annetnash8266
 
Write a 1.400 to 1,700 word essay that summarizes your Week 4 .docx
Write a 1.400 to 1,700 word essay that summarizes your Week 4 .docxWrite a 1.400 to 1,700 word essay that summarizes your Week 4 .docx
Write a 1.400 to 1,700 word essay that summarizes your Week 4 .docx
annetnash8266
 
Write a 1,400- to 1,750-word paper highlighting considerations for.docx
Write a 1,400- to 1,750-word paper highlighting considerations for.docxWrite a 1,400- to 1,750-word paper highlighting considerations for.docx
Write a 1,400- to 1,750-word paper highlighting considerations for.docx
annetnash8266
 
Write a 1,050-word minimum strategic implementation plan in wh.docx
Write a 1,050-word minimum strategic implementation plan in wh.docxWrite a 1,050-word minimum strategic implementation plan in wh.docx
Write a 1,050-word minimum strategic implementation plan in wh.docx
annetnash8266
 

More from annetnash8266 (20)

writea500-worddefinitioness.docx
writea500-worddefinitioness.docxwritea500-worddefinitioness.docx
writea500-worddefinitioness.docx
 
Writea minimum 300 word reflection in which you compare and.docx
Writea minimum 300 word reflection in which you compare and.docxWritea minimum 300 word reflection in which you compare and.docx
Writea minimum 300 word reflection in which you compare and.docx
 
Writea draft of the paper on case tools and include the followin.docx
Writea draft of the paper on case tools and include the followin.docxWritea draft of the paper on case tools and include the followin.docx
Writea draft of the paper on case tools and include the followin.docx
 
Write  To complete the assignment, open the OUTLINE ATTACHMENT fi.docx
Write  To complete the assignment, open the OUTLINE ATTACHMENT fi.docxWrite  To complete the assignment, open the OUTLINE ATTACHMENT fi.docx
Write  To complete the assignment, open the OUTLINE ATTACHMENT fi.docx
 
Write your proposal based on the criterias listed below Pr.docx
Write your proposal based on the criterias listed below Pr.docxWrite your proposal based on the criterias listed below Pr.docx
Write your proposal based on the criterias listed below Pr.docx
 
Write a 350- to no more than 700-word paper using APA format.D.docx
Write a 350- to no more than 700-word paper using APA format.D.docxWrite a 350- to no more than 700-word paper using APA format.D.docx
Write a 350- to no more than 700-word paper using APA format.D.docx
 
Write a 350- to 700-word paper in which you investigate the interr.docx
Write a 350- to 700-word paper in which you investigate the interr.docxWrite a 350- to 700-word paper in which you investigate the interr.docx
Write a 350- to 700-word paper in which you investigate the interr.docx
 
Write a 350 word analysis about juvenile attitudes toward poli.docx
Write a 350 word analysis about juvenile attitudes toward poli.docxWrite a 350 word analysis about juvenile attitudes toward poli.docx
Write a 350 word analysis about juvenile attitudes toward poli.docx
 
Write a 350- to 700-word paper in which you do the followingExp.docx
Write a 350- to 700-word paper in which you do the followingExp.docxWrite a 350- to 700-word paper in which you do the followingExp.docx
Write a 350- to 700-word paper in which you do the followingExp.docx
 
Write a 350- to 700- word response to the following questionsHo.docx
Write a 350- to 700- word response to the following questionsHo.docxWrite a 350- to 700- word response to the following questionsHo.docx
Write a 350- to 700- word response to the following questionsHo.docx
 
Write a 1,400- to 1,750 word APA format paper regarding a so.docx
Write a 1,400- to 1,750 word APA format paper regarding a so.docxWrite a 1,400- to 1,750 word APA format paper regarding a so.docx
Write a 1,400- to 1,750 word APA format paper regarding a so.docx
 
Write a 350- to 500-word summary in which you answer the following.docx
Write a 350- to 500-word summary in which you answer the following.docxWrite a 350- to 500-word summary in which you answer the following.docx
Write a 350- to 500-word summary in which you answer the following.docx
 
Write a 300- to 350-word response to the followingWhen thinki.docx
Write a 300- to 350-word response to the followingWhen thinki.docxWrite a 300- to 350-word response to the followingWhen thinki.docx
Write a 300- to 350-word response to the followingWhen thinki.docx
 
WRITE A 2-page paper on the following questions. Your answers must.docx
WRITE A 2-page paper on the following questions. Your answers must.docxWRITE A 2-page paper on the following questions. Your answers must.docx
WRITE A 2-page paper on the following questions. Your answers must.docx
 
Write a 1- to 2-page report for the Director of IT describing .docx
Write a 1- to 2-page report for the Director of IT describing .docxWrite a 1- to 2-page report for the Director of IT describing .docx
Write a 1- to 2-page report for the Director of IT describing .docx
 
Write a 1,400- to 2,100-word paper in which you assess criminal ju.docx
Write a 1,400- to 2,100-word paper in which you assess criminal ju.docxWrite a 1,400- to 2,100-word paper in which you assess criminal ju.docx
Write a 1,400- to 2,100-word paper in which you assess criminal ju.docx
 
Write a 1,750-word paper that includes the following(UNITED.docx
Write a 1,750-word paper that includes the following(UNITED.docxWrite a 1,750-word paper that includes the following(UNITED.docx
Write a 1,750-word paper that includes the following(UNITED.docx
 
Write a 1.400 to 1,700 word essay that summarizes your Week 4 .docx
Write a 1.400 to 1,700 word essay that summarizes your Week 4 .docxWrite a 1.400 to 1,700 word essay that summarizes your Week 4 .docx
Write a 1.400 to 1,700 word essay that summarizes your Week 4 .docx
 
Write a 1,400- to 1,750-word paper highlighting considerations for.docx
Write a 1,400- to 1,750-word paper highlighting considerations for.docxWrite a 1,400- to 1,750-word paper highlighting considerations for.docx
Write a 1,400- to 1,750-word paper highlighting considerations for.docx
 
Write a 1,050-word minimum strategic implementation plan in wh.docx
Write a 1,050-word minimum strategic implementation plan in wh.docxWrite a 1,050-word minimum strategic implementation plan in wh.docx
Write a 1,050-word minimum strategic implementation plan in wh.docx
 

Recently uploaded

Multithreading_in_C++ - std::thread, race condition
Multithreading_in_C++ - std::thread, race conditionMultithreading_in_C++ - std::thread, race condition
Multithreading_in_C++ - std::thread, race condition
Mohammed Sikander
 
1.4 modern child centered education - mahatma gandhi-2.pptx
1.4 modern child centered education - mahatma gandhi-2.pptx1.4 modern child centered education - mahatma gandhi-2.pptx
1.4 modern child centered education - mahatma gandhi-2.pptx
JosvitaDsouza2
 
Chapter 3 - Islamic Banking Products and Services.pptx
Chapter 3 - Islamic Banking Products and Services.pptxChapter 3 - Islamic Banking Products and Services.pptx
Chapter 3 - Islamic Banking Products and Services.pptx
Mohd Adib Abd Muin, Senior Lecturer at Universiti Utara Malaysia
 
Operation Blue Star - Saka Neela Tara
Operation Blue Star   -  Saka Neela TaraOperation Blue Star   -  Saka Neela Tara
Operation Blue Star - Saka Neela Tara
Balvir Singh
 
A Survey of Techniques for Maximizing LLM Performance.pptx
A Survey of Techniques for Maximizing LLM Performance.pptxA Survey of Techniques for Maximizing LLM Performance.pptx
A Survey of Techniques for Maximizing LLM Performance.pptx
thanhdowork
 
Digital Tools and AI for Teaching Learning and Research
Digital Tools and AI for Teaching Learning and ResearchDigital Tools and AI for Teaching Learning and Research
Digital Tools and AI for Teaching Learning and Research
Vikramjit Singh
 
The French Revolution Class 9 Study Material pdf free download
The French Revolution Class 9 Study Material pdf free downloadThe French Revolution Class 9 Study Material pdf free download
The French Revolution Class 9 Study Material pdf free download
Vivekanand Anglo Vedic Academy
 
Home assignment II on Spectroscopy 2024 Answers.pdf
Home assignment II on Spectroscopy 2024 Answers.pdfHome assignment II on Spectroscopy 2024 Answers.pdf
Home assignment II on Spectroscopy 2024 Answers.pdf
Tamralipta Mahavidyalaya
 
The Accursed House by Émile Gaboriau.pptx
The Accursed House by Émile Gaboriau.pptxThe Accursed House by Émile Gaboriau.pptx
The Accursed House by Émile Gaboriau.pptx
DhatriParmar
 
TESDA TM1 REVIEWER FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...
TESDA TM1 REVIEWER  FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...TESDA TM1 REVIEWER  FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...
TESDA TM1 REVIEWER FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...
EugeneSaldivar
 
Lapbook sobre os Regimes Totalitários.pdf
Lapbook sobre os Regimes Totalitários.pdfLapbook sobre os Regimes Totalitários.pdf
Lapbook sobre os Regimes Totalitários.pdf
Jean Carlos Nunes Paixão
 
Normal Labour/ Stages of Labour/ Mechanism of Labour
Normal Labour/ Stages of Labour/ Mechanism of LabourNormal Labour/ Stages of Labour/ Mechanism of Labour
Normal Labour/ Stages of Labour/ Mechanism of Labour
Wasim Ak
 
Francesca Gottschalk - How can education support child empowerment.pptx
Francesca Gottschalk - How can education support child empowerment.pptxFrancesca Gottschalk - How can education support child empowerment.pptx
Francesca Gottschalk - How can education support child empowerment.pptx
EduSkills OECD
 
How libraries can support authors with open access requirements for UKRI fund...
How libraries can support authors with open access requirements for UKRI fund...How libraries can support authors with open access requirements for UKRI fund...
How libraries can support authors with open access requirements for UKRI fund...
Jisc
 
Group Presentation 2 Economics.Ariana Buscigliopptx
Group Presentation 2 Economics.Ariana BuscigliopptxGroup Presentation 2 Economics.Ariana Buscigliopptx
Group Presentation 2 Economics.Ariana Buscigliopptx
ArianaBusciglio
 
The Challenger.pdf DNHS Official Publication
The Challenger.pdf DNHS Official PublicationThe Challenger.pdf DNHS Official Publication
The Challenger.pdf DNHS Official Publication
Delapenabediema
 
Best Digital Marketing Institute In NOIDA
Best Digital Marketing Institute In NOIDABest Digital Marketing Institute In NOIDA
Best Digital Marketing Institute In NOIDA
deeptiverma2406
 
Introduction to AI for Nonprofits with Tapp Network
Introduction to AI for Nonprofits with Tapp NetworkIntroduction to AI for Nonprofits with Tapp Network
Introduction to AI for Nonprofits with Tapp Network
TechSoup
 
CACJapan - GROUP Presentation 1- Wk 4.pdf
CACJapan - GROUP Presentation 1- Wk 4.pdfCACJapan - GROUP Presentation 1- Wk 4.pdf
CACJapan - GROUP Presentation 1- Wk 4.pdf
camakaiclarkmusic
 
Language Across the Curriculm LAC B.Ed.
Language Across the  Curriculm LAC B.Ed.Language Across the  Curriculm LAC B.Ed.
Language Across the Curriculm LAC B.Ed.
Atul Kumar Singh
 

Recently uploaded (20)

Multithreading_in_C++ - std::thread, race condition
Multithreading_in_C++ - std::thread, race conditionMultithreading_in_C++ - std::thread, race condition
Multithreading_in_C++ - std::thread, race condition
 
1.4 modern child centered education - mahatma gandhi-2.pptx
1.4 modern child centered education - mahatma gandhi-2.pptx1.4 modern child centered education - mahatma gandhi-2.pptx
1.4 modern child centered education - mahatma gandhi-2.pptx
 
Chapter 3 - Islamic Banking Products and Services.pptx
Chapter 3 - Islamic Banking Products and Services.pptxChapter 3 - Islamic Banking Products and Services.pptx
Chapter 3 - Islamic Banking Products and Services.pptx
 
Operation Blue Star - Saka Neela Tara
Operation Blue Star   -  Saka Neela TaraOperation Blue Star   -  Saka Neela Tara
Operation Blue Star - Saka Neela Tara
 
A Survey of Techniques for Maximizing LLM Performance.pptx
A Survey of Techniques for Maximizing LLM Performance.pptxA Survey of Techniques for Maximizing LLM Performance.pptx
A Survey of Techniques for Maximizing LLM Performance.pptx
 
Digital Tools and AI for Teaching Learning and Research
Digital Tools and AI for Teaching Learning and ResearchDigital Tools and AI for Teaching Learning and Research
Digital Tools and AI for Teaching Learning and Research
 
The French Revolution Class 9 Study Material pdf free download
The French Revolution Class 9 Study Material pdf free downloadThe French Revolution Class 9 Study Material pdf free download
The French Revolution Class 9 Study Material pdf free download
 
Home assignment II on Spectroscopy 2024 Answers.pdf
Home assignment II on Spectroscopy 2024 Answers.pdfHome assignment II on Spectroscopy 2024 Answers.pdf
Home assignment II on Spectroscopy 2024 Answers.pdf
 
The Accursed House by Émile Gaboriau.pptx
The Accursed House by Émile Gaboriau.pptxThe Accursed House by Émile Gaboriau.pptx
The Accursed House by Émile Gaboriau.pptx
 
TESDA TM1 REVIEWER FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...
TESDA TM1 REVIEWER  FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...TESDA TM1 REVIEWER  FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...
TESDA TM1 REVIEWER FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...
 
Lapbook sobre os Regimes Totalitários.pdf
Lapbook sobre os Regimes Totalitários.pdfLapbook sobre os Regimes Totalitários.pdf
Lapbook sobre os Regimes Totalitários.pdf
 
Normal Labour/ Stages of Labour/ Mechanism of Labour
Normal Labour/ Stages of Labour/ Mechanism of LabourNormal Labour/ Stages of Labour/ Mechanism of Labour
Normal Labour/ Stages of Labour/ Mechanism of Labour
 
Francesca Gottschalk - How can education support child empowerment.pptx
Francesca Gottschalk - How can education support child empowerment.pptxFrancesca Gottschalk - How can education support child empowerment.pptx
Francesca Gottschalk - How can education support child empowerment.pptx
 
How libraries can support authors with open access requirements for UKRI fund...
How libraries can support authors with open access requirements for UKRI fund...How libraries can support authors with open access requirements for UKRI fund...
How libraries can support authors with open access requirements for UKRI fund...
 
Group Presentation 2 Economics.Ariana Buscigliopptx
Group Presentation 2 Economics.Ariana BuscigliopptxGroup Presentation 2 Economics.Ariana Buscigliopptx
Group Presentation 2 Economics.Ariana Buscigliopptx
 
The Challenger.pdf DNHS Official Publication
The Challenger.pdf DNHS Official PublicationThe Challenger.pdf DNHS Official Publication
The Challenger.pdf DNHS Official Publication
 
Best Digital Marketing Institute In NOIDA
Best Digital Marketing Institute In NOIDABest Digital Marketing Institute In NOIDA
Best Digital Marketing Institute In NOIDA
 
Introduction to AI for Nonprofits with Tapp Network
Introduction to AI for Nonprofits with Tapp NetworkIntroduction to AI for Nonprofits with Tapp Network
Introduction to AI for Nonprofits with Tapp Network
 
CACJapan - GROUP Presentation 1- Wk 4.pdf
CACJapan - GROUP Presentation 1- Wk 4.pdfCACJapan - GROUP Presentation 1- Wk 4.pdf
CACJapan - GROUP Presentation 1- Wk 4.pdf
 
Language Across the Curriculm LAC B.Ed.
Language Across the  Curriculm LAC B.Ed.Language Across the  Curriculm LAC B.Ed.
Language Across the Curriculm LAC B.Ed.
 

A Skills Approach Excel 2013 Chapter 3 Using Formulas and Fu.docx

  • 1. A Skills Approach: Excel 2013 Chapter 3: Using Formulas and Functions 1 | Page skill review 3.1 Last Updated 4/3/15 skill review 3.1 In this project, you will complete a staff billing workbook similar to the one you worked on in Chapter 1. This worksheet is more complicated and uses a variety of formulas to calculate information about each staff member’s weekly billing and to generate client bills from the staff hours. As you work on the Marshall Hours worksheet, you can use the Luz Hours or Stevens Hours worksheet as a guide. This is a long project. Be sure to save your work often! Skills needed to complete this project: ing Minimum and Maximum Values
  • 2. the Name Manager 1. Open the start file EX2013-SkillReview-3-1.The file will be renamed automatically to include your name. Change the project file name if directed to do so by your instructor, and save it. 2. If the workbook opens in Protected View, click the Enable Editing button in the Message Bar at the top of the workbook. 3. The Luz Hours and Stevens Hours worksheets are completed, but they contain errors. You’ll need to fix the errors before working on the Marshall Hours worksheet. a. Click the Luz Hours sheet tab. b. Click cell C4. c. Notice the #NAME? error. Move your mouse over the Smart Tag icon to display a tool tip describing the possible error—The formula contains unrecognized text. d. The formula =VLOOKUP(C3,BillableRates,4,FALSE) references the named range BillableRates. That name has not yet been defined. That’s what is causing the error. 4. Billable rates are kept in the Rates worksheet. Create the name BillableRates to use in formulas throughout the workbook. a. Click the Rates sheet tab.
  • 3. b. Select cells A3:D5. c. Type BillableRates in the Name box. d. Press Enter. Step 1 Download start file A Skills Approach: Excel 2013 Chapter 3: Using Formulas and Functions 2 | Page skill review 3.1 Last Updated 4/3/15 5. Return to the Luz Hours worksheet. Notice all the errors have been fixed. Now you can move on to completing the Marshall Hours sheet. 6. Enter a formula in cell C2 to display Marshall’s full name in the format Bob Smith. Staff names are kept in the Rates worksheet. a. Click the Marshall Hours sheet tab, and click cell C2. b. On the Formulas tab, in the Function Library group, click the Text button, and select CONCATENATE. c. Click the Rates sheet tab. If necessary, position the Function Arguments dialog so you can click the sheet tabs.
  • 4. d. Click cell C3 to enter the cell reference in the Text1 argument box. e. Press TAB to move to the Text2 argument box. f. Type " " to place a space between the first and last names. g. Press TAB to move to the Text3 argument box. h. Click the Rates tab again. i. Click cell B3 to enter the text reference in the Text3 argument box. j. Click OK. The completed formula should look like this: =CONCATENATE(Rates!C3," ",Rates!B3) 7. Enter a formula in cell C4 to look up Marshall’s current billable rate. Use the employee number as the lookup value. a. Click cell C4. b. On the Formulas tab, in the Function Library group, click the Lookup & Reference button, and select VLOOKUP. c. Click cell C3 to enter it in the Lookup_value argument box. d. Type BillableRates in the Table_array argument box. e. The rates are located in the fourth column of the lookup table. Type 4 in the Col_index_num argument box. f. Ensure that the function will return only an exact match. Type
  • 5. false in the Range_lookup argument box. g. Click OK. The completed formula should look like this: =VLOOKUP(C3,BillableRates,4,FALSE) 8. Enter formulas in cells B17:H17 to calculate the number of clients served each day. a. Click cell B17. b. Type =COU c. Double-click COUNT in the Formula AutoComplete list. d. Click cell B9 and drag to cell B12. e. Press Enter. The completed formula should look like this: =COUNT(B9:B12) f. Copy the formula in cell B17 to cells C17:H17. Use any method you want. A Skills Approach: Excel 2013 Chapter 3: Using Formulas and Functions 3 | Page skill review 3.1 Last Updated 4/3/15 9. Enter a formula in cell H19 to calculate the average daily billable hours (B13:H13). a. Click cell H19.
  • 6. b. Type =AV and then double-click AVERAGE in the Formula AutoComplete list. c. Click cell B13 and drag to cell H13. d. Press Enter. The completed formula should look like this: =AVERAGE(B13:H13) 10. Enter a formula in cell H20 to calculate the total billable hours for the week (B13:H13). a. Click cell H20. b. Type =SU and then double-click SUM in the Formula AutoComplete list. c. Click cell B13 and drag to cell H13. d. Press Enter. The completed formula should look like this: =SUM(B13:H13) 11. Enter a formula in cell H22 to calculate the lowest daily bill for the week (B15:H15). a. Click cell H22. b. Type =MIN( and then click cell B15 and drag to cell H15. c. Press [Enter]. The completed formula should look like this: =MIN(B15:H15) 12. Enter a formula in cell H23 to calculate the highest daily bill for the week. a. Click cell H23.
  • 7. b. Type =MAX( and then click cell B15 and drag to cell H15. c. Press Enter. The completed formula should look like this: =MAX(B15:H15) 13. Each staff member is required to log a minimum number of billable hours per week. Enter a formula in cell H3 using an IF statement to display “yes” if the total billable hours for the week (cell H20) is greater than or equal to the required hours (cell H2) and “no” if they are not. a. Click cell H3. b. On the Formulas tab, in the Function Library group, click Logical. c. Click IF. d. If necessary, move the Function Arguments dialog to the side so you can see the worksheet data. e. In the Logical_test argument box, type: H20>=H2 f. In the Value_if_true argument box, type: yes g. In the Value_if_false argument box, type: no h. Click OK. The completed formula should look like this: =IF(H20>=H2,"yes","no") 14. Display your formulas temporarily to check for accuracy.
  • 8. a. On the Formulas tab, in the Formula Auditing group, click the Show Formulas button. b. When you are ready to continue, hide the formulas and display formula values by clicking the Show Formulas button again. 15. Now that the worksheet for Marshall is complete, you can generate a bill for the Smith client for the week. Click the Smith Bill sheet tab. A Skills Approach: Excel 2013 Chapter 3: Using Formulas and Functions 4 | Page skill review 3.1 Last Updated 4/3/15 16. All bills are due thirty days from the date the bill was created. Enter a formula in cell C2 to calculate the due date using the TODAY function. a. Double-click cell C2. b. Type the formula: =TODAY()+30 c. Press Enter. 17. Enter formulas to reference the number of hours each staff member billed for Smith. a. Click cell B6 and type = to begin the formula. b. Click the Marshall Hours sheet, and click cell J12. c. Press Enter. The completed formula should look like this:
  • 9. ='Marshall Hours'!J12 d. Type = to begin the next formula in cell B7. e. Click the Stevens Hours sheet, and click cell J12. f. Press Enter. The completed formula should look like this: ='Stevens Hours'!J12 g. Type = to begin the next formula in cell B8. h. Click the Luz Hours sheet, and click cell J12. i. Press Enter. The completed formula should look like this: ='Luz Hours'!J12 18. There are errors in the Rate and Bill Amount columns. Use your error checking skills to track down the cause of the error. a. On the Formulas tab, in the Formula Auditing group, click the Error Checking button to open the Error Checking dialog. b. After you’ve reviewed the first error, click the Next button to go to the next error. Continue reviewing each error and clicking Next until you receive the message that the error check is complete for the entire sheet. Click OK. 19. Did you notice that every error in the worksheet is a “value not available” error? You probably need to dig deeper to find the root cause of the problem. a. Click cell D6 and look at the formula in the formula bar:
  • 10. =B6*C6 b. Display the Trace Precedent and Trace Dependent arrows for this cell. On the Formulas tab, in the Formula Auditing group, click both the Trace Precedents button and the Trace Dependents button. c. You can see that the problem appears to start in the precedent cell C6. Hide the arrows for cell D6 by clicking the Remove Arrows button, and then click cell C6 and click the Trace Precedents button. d. Notice that one of the precedent arrows for cell C6 refers to another worksheet. Double-click the dashed precedent arrow line. e. In the Go To dialog, click the worksheet reference and then click the OK button. A Skills Approach: Excel 2013 Chapter 3: Using Formulas and Functions 5 | Page skill review 3.1 Last Updated 4/3/15 20. The link takes you to the Rates sheet where cells A2:D5 are selected. Notice that the Name box displays the name ClientRates. (Depending on your screen resolution, the name may be
  • 11. slightly cut-off.) The formula in cell C6 is a lookup formula that uses the named range ClientRates as the Table_array argument. There are two problems with the definition of the named range: It includes the label row (A2:D2), and it includes the employee number data (A2:A5). a. On the Formulas tab, in the Defined Names group, click the Name Manager button. b. Click the ClientRates name and review the cell range in the Refers to box. The range is incorrect. The ClientRates name should refer to cells B2:D5 on the Rates sheet. c. Edit the range listed in the Refers to box to: =Rates!$B$2:$D$5 d. Click the Close button to close the Name Manager. e. When Excel asks if you want to save the changes to the name reference, click Yes. 21. Now that the total bill amount is computing correctly, you can enter a formula in cell D14 to give the client the option of a monthly payment plan. You are authorized to offer a 6-month payment plan at a 2% annual percentage rate. Use cell references in the formula. a. If necessary, click the Smith Bill sheet.
  • 12. b. Click cell D14. c. On the Formulas tab, in the Function Library group, click the Financial button. d. Scroll down the list, and click PMT. e. In the Function Arguments dialog, enter the Rate argument: D13/12 f. Click in the Nper argument box, and then click cell D12 (the number of payments). g. Click in the Pv argument box, and then click cell D9 (the present value of the loan). h. In the Function Arguments dialog, click OK. The completed formula should look like this: =PMT(D13/12,D12,D9) i. The monthly payment amount appears as a negative number. That might be confusing to the client. Modify the formula so the result appears as a positive number. j. Double-click cell D14 and type – between = and PMT. k. Press Enter. The final formula should look like this: = – PMT(D13/12,D12,D9) 22. Save and close the workbook. 23. Upload and save your project file. 24. Submit project for grading.
  • 13. Step 2 Upload & Save Step 3 Grade my Project Smith BillClient BillDue DateClient NameSmithStaff MembersHours BilledRateBill AmountMarshallERROR:#N/AERROR:#N/AStevensERROR:#N/ AERROR:#N/ALuzERROR:#N/AERROR:#N/ATotalERROR:#N /APayment Plan Option # of Months6APR2%Monthy Payment Marshall HoursLegal Staff Billable Hours LogEmployee NameRequired billable hours per week:35Employee Number265Weekly requirement met?Billable RateDates WorkedMonTueWedThuFriSatSunWeekly total per client1/14/131/15/131/16/131/17/131/18/131/19/131/20/13Clien tsAturo2.002.503.501.002.0011.00Hudson3.503.500.502.259.75 Proctor2.252.252.252.252.2511.25Smith3.503.503.5010.50Total Billable Hours Per Day7.758.255.756.256.754.253.50Daily Bill $ - 0$ - 0$ - 0$ - 0$ - 0$ - 0$ - 0Bill Total for Week$ - 0# of Clients Served Each DayAverage Daily Billable HoursTotal Billable Hours for WeekLowest Daily Bill this WeekHighest Daily Bill this Week Luz HoursLegal Staff Billable Hours LogEmployee NameMaria LuzRequired billable hours per week:35Employee Number7896Weekly requirement met?yesBillable RateERROR:#NAME?Dates WorkedMonTueWedThuFriSatSunWeekly total per client1/14/131/15/131/16/131/17/131/18/131/19/131/20/13Clien tsAturo2.000.503.501.002.009.00Hudson1.001.001.001.001.001.
  • 14. 006.00Proctor2.252.252.252.252.252.2513.50Smith2.502.502.50 2.502.5012.50Total Billable Hours Per Day5.255.756.259.256.757.75- 0Daily Bill ERROR:#NAME?ERROR:#NAME?ERROR:#NAME?ERROR:# NAME?ERROR:#NAME?ERROR:#NAME?ERROR:#NAME?Bil l Total for WeekERROR:#NAME?# of Clients Served Each Day3344440Average Daily Billable Hours5.86Total Billable Hours for Week41.00Lowest Daily Bill this WeekERROR:#NAME?Highest Daily Bill this WeekERROR:#NAME? Stevens HoursLegal Staff Billable Hours LogEmployee NameWilliam StevensRequired billable hours per week:35Employee Number1554Weekly requirement met?noBillable RateERROR:#NAME?Dates WorkedMonTueWedThuFriSatSunWeekly total per client1/14/131/15/131/16/131/17/131/18/131/19/131/20/13Clien tsAturo2.001.000.501.004.50Hudson3.503.507.00Proctor2.252.2 52.252.252.2511.25Smith2.504.256.75Total Billable Hours Per Day7.755.752.755.757.50- 0- 0Daily Bill ERROR:#NAME?ERROR:#NAME?ERROR:#NAME?ERROR:# NAME?ERROR:#NAME?ERROR:#NAME?ERROR:#NAME?Bil l Total for WeekERROR:#NAME?# of Clients Served Each Day3322300Average Daily Billable Hours4.21Total Billable Hours for Week29.50Lowest Daily Bill this WeekERROR:#NAME?Highest Daily Bill this WeekERROR:#NAME? RatesCurrent Hourly RatesEmployee #Last NameFirst NameRate265MarshallDavid$ 501554StevensWilliam$ 857896LuzMaria$ 150CONFIDENTIAL