代做Autotutorial 3 Microsoft Excel – Advanced Formulas代写留学生Matlab语言

Autotutorial 3

Microsoft Excel – Advanced Formulas

20 Points

NOTE: AUTOTUTORIALS ARE WORTH MORE THAN HOMEWORKS!!

A.General Instructions

a.   To  begin  the  assignment,  download  and open the  file AT3_SQ25.xlsx. Your          completed           assignment          should          be           named Section_LastName_FirstName_AT3.xlsx

b.    Once the file is open, you will see a spreadsheet with five unfinished columns: “Total Sales”, “Commission & Bonus”, “Total Salary”, “Years w/ Firm”, and “Training Required?”.

c.    Above the columns for Quarterly Sales is a Commission & Bonus table. You will use this table to complete one of the unfinished columns.

d.   Use Excel  Help and Section  E of these  instructions  to  read  about  the Excel Lookup, Now(), and If functions. After reading the descriptions for each function, you will be able to apply them to the correct unfinished columns.

e.   You  will  also  be  creating  a  chart  to  summarize  the  data  and  formatting  the spreadsheet to be more legible.

B. Completing Formulas

a.    In  the “Total  Sales” column, calculate the total  sales for each employee’s first through fourth quarter sales. In cell F12, enter the correct formula and fill down the formula through F24.

b.   In cell F25, calculate the Average Total Sales using the Average Function.

c.    In the “Commission & Bonus” column (H), use the Lookup function*. Apply the correct  formula  to  cell  H12  (based  on  total  sales)  and  fill  down  the  formula through H24. (Hint: At one point, you will need to use absolute referencing on certain ranges so that your formula works for the entire column.)

d.   In the “Total Salary” column (I), you will need to sum together the employee’s “Salary” and Commission & Bonus.”

e.   In the “Years w/ Firm” column (K), you will need to use the Now() function* to calculate  how  many years each  employee  has  been  with  the  firm  (Hint: Difference  between Now() and  ‘Date  hired’  will  give  the  duration  in  days which you will need to divide by # of days in a year).

f.     In the “Training Required?” column (L), you will need to use the Iffunction* to indicate who requires training based on their Total Sales. Employees with sales greater or equal to $100 do not require training (No), whereas employees with sales   less   than   $100   require  training  (Yes). *See Section  E  for   more information

C. Chart

a.    Create  a Stacked  Column  Chart using the employees’ names and their first through fourth quarter sales.

b.   Title the chart “PLS21 SQ25 Quarterly Sales” and center align.

c.   The  first through fourth quarters should automatically appear in the legend, and the  employee’s  names should  automatically  appear  along  the  x-axis  if you highlight the chart’s columns correctly. Make sure both are on your chart.

d.   Place your chart under your data.

D.Formatting

a.    Insert three rows above the first line that’s titled “PLS 21 Associates Sales Employees Report”. On the first of the three rows you inserted, type “U.C. Davis ()”. Make the title bold, size 32 font, and centered between A1:M1 (you can decide what method to use to center it). Make the row taller so you can read the text if necessary.

b.   Move ranges B13:L28 to C13:M28 (All the cells should shift to the right). In the  range  B15:B27,  insert  a  Sparkline  to  represent  the  first  through  fourth quarters of each employee (the range of cells C15:F27).

c.    In the range  C15:F27, insert Conditional formatting such as Data Bars, Color Scales, or Icon Sets (This will show up as well as the number). You only have to choose one.

d.    On the bottom of row 2, insert a thick bottom border for the range A2:M2. After that there should be a blank row (row 3) in between your border and the PLS 21 Associate Sales Employees Report Title.

e.    Apply all borders to the range A13:M27 (Don’t include diagonal borders across every cell). Apply a thick box border around the outside of the range C28:G28.

f.   Apply dollar signs to the range C15:J27.

g.  Next to where it says “Comments” on row 30, place thin bottom borders in between ranges B30:G30 and B31:G31.

h.   Format your spreadsheet to have landscape orientation and set it to fit to: 1 page wide by 2 pages tall. (Your data should end up on the first page and your chart on the second). Ensure that both table and chart are centered vertically and horizontally in the pages.

i.    Locking cells:

i.      Finally,   after    all    of   this   hard    work    you   don’t   want    anyone inappropriately changing the information. Check to make sure that the range A13:M28 is locked. (Hint: Go to Format Cells).

ii.      After the range is locked, protect the sheets so users cannot modify your spreadsheet. Do not check the boxes for “select locked cells” and “select unlocked cells”.

iii.      Do NOT add a password to your sheet.

E. Function Help

a.   Here are some details and descriptions ofthe functions you will use in Section B.

b.   Feel free to YouTube any of these functions for further help.

LOOKUP Function

1.   LOOKUP is a function that fetches a value from a lookup table on the worksheet. This lookup table can consist of two vectors: a lookup vector and a result vector. A vector is  a  range  of  cells  and  is  written  as  two  cell  addresses  separated by  a colon. For example, the cells between and including A3 and A7 are written as A3:A7.

2.    To use the LOOKUP function, click on the FX button next to the formula bar. In the “Insert Function” or “Formula Builder” dialogue box, type LOOKUP in the search box to find the LOOKUP function. Then, click OK. At this point, you will be asked to  choose  one  of two  formulas.  Choose  this  formula: =LOOKUP(lookup_value, lookup_vector, result_vector)

3.  Now,  you  will  be  asked  to  enter  the  appropriate  information  for  each  line.  The lookup_value line requires only one cell. The lookup_vector requires a group of cells. Looking at the Bonus Table provided, which column do you think might be the lookup value  and  the  lookup_vector?  Finally,  the  result_vector  requires  a  group  of  cells. Which group do you think this might be?

4.   At  the  bottom  of the  dialogue  box you will  see Formula Result = a reasonable number. You can check calculations and formulas by hand. Now click OK.

5.   Once  again,  a  plausible  number  will  appear in  cell H12 (H12 becomes I15 after inserting formatting rows).

NOW() function

1.  NOW() is a date/time function that returns the number of days and fraction since 0:00:00 Jan. 1, 1900.

2.   To use the NOW() function, click on the FX button next to the formula bar. In the “Insert Function” or “Formula Builder” dialogue box, type NOW() in the search box to find the NOW() function. Then, click OK.

3.   NOW() is a code for today’s date, so if you wanted a cell to include today’s date, all you would do is type in: =NOW()

4.   Use the NOW() function to calculate how long it has been since something started by subtracting the starting date from NOW().

5.   Remember that NOW() returns days, so if you want to calculate the number of years you must apply the factor necessary to go from days to years (does not require another function).

6.   You  should  have  a  sensible  answer  in  cell  K12  (K12  becomes  L15 after inserting formatting rows).

IF (Logical Expression, Result if TRUE, Result if FALSE) Function

1.   This is a logical function that returns one value if the given logical expression is true and another message if the expression is false

2.   To use the IF function, click on the FX button next to the formula bar. In the “Insert Function” or “Formula Builder” dialogue box, type IF in the search box to find the IF function. Then, click OK.

3.   In the dialogue box, all employees with sales less than $100 do require training. What do you think the logical test might be? In the second box, you need to type in a response if the logical test is true, and the third line should have a response if the logical test is false. What do you think the appropriate responses would be? (Hint: No/Yes).

4.   When finished, click on ENTER and you should have a logical answer in cell L12 (L12 becomes M15 after inserting formatting rows).




热门主题

课程名

mktg2509 csci 2600 38170 lng302 csse3010 phas3226 77938 arch1162 engn4536/engn6536 acx5903 comp151101 phl245 cse12 comp9312 stat3016/6016 phas0038 comp2140 6qqmb312 xjco3011 rest0005 ematm0051 5qqmn219 lubs5062m eee8155 cege0100 eap033 artd1109 mat246 etc3430 ecmm462 mis102 inft6800 ddes9903 comp6521 comp9517 comp3331/9331 comp4337 comp6008 comp9414 bu.231.790.81 man00150m csb352h math1041 eengm4100 isys1002 08 6057cem mktg3504 mthm036 mtrx1701 mth3241 eeee3086 cmp-7038b cmp-7000a ints4010 econ2151 infs5710 fins5516 fin3309 fins5510 gsoe9340 math2007 math2036 soee5010 mark3088 infs3605 elec9714 comp2271 ma214 comp2211 infs3604 600426 sit254 acct3091 bbt405 msin0116 com107/com113 mark5826 sit120 comp9021 eco2101 eeen40700 cs253 ece3114 ecmm447 chns3000 math377 itd102 comp9444 comp(2041|9044) econ0060 econ7230 mgt001371 ecs-323 cs6250 mgdi60012 mdia2012 comm221001 comm5000 ma1008 engl642 econ241 com333 math367 mis201 nbs-7041x meek16104 econ2003 comm1190 mbas902 comp-1027 dpst1091 comp7315 eppd1033 m06 ee3025 msci231 bb113/bbs1063 fc709 comp3425 comp9417 econ42915 cb9101 math1102e chme0017 fc307 mkt60104 5522usst litr1-uc6201.200 ee1102 cosc2803 math39512 omp9727 int2067/int5051 bsb151 mgt253 fc021 babs2202 mis2002s phya21 18-213 cege0012 mdia1002 math38032 mech5125 07 cisc102 mgx3110 cs240 11175 fin3020s eco3420 ictten622 comp9727 cpt111 de114102d mgm320h5s bafi1019 math21112 efim20036 mn-3503 fins5568 110.807 bcpm000028 info6030 bma0092 bcpm0054 math20212 ce335 cs365 cenv6141 ftec5580 math2010 ec3450 comm1170 ecmt1010 csci-ua.0480-003 econ12-200 ib3960 ectb60h3f cs247—assignment tk3163 ics3u ib3j80 comp20008 comp9334 eppd1063 acct2343 cct109 isys1055/3412 math350-real math2014 eec180 stat141b econ2101 msinm014/msing014/msing014b fit2004 comp643 bu1002 cm2030
联系我们
EMail: 99515681@qq.com
QQ: 99515681
留学生作业帮-留学生的知心伴侣!
工作时间:08:00-21:00
python代写
微信客服:codinghelp
站长地图