Prepare a quick revenue chart

Assignment Help Basic Computer Science
Reference no: EM132149919

Part 1: Prepare Year 1 Revenues

Go to the Revenues tab and compute the total revenues for each customer and the total Cost of Goods Sold (COGS) for each client.

Notice that there are two products. There is a quantity tally for each customer for each of the two products: Blue and Red. You will compute the revenues in column F and the COGS in column G.

Go to cell F2 and enter

=(D2*Parameters!B6)+(E2*Parameters!B7)

That is quantity x price + quantity x price.

The parameters appear in the Parameters Tab. Click and look at cells B6 and B7. The first one is the blue and the second is the red.

Now, in case you skipped the background box above. You need to go back now and read it. It is "TECHNICAL NOTES ON CELL REFERENCING AND ANCHORING" If you're seeing all this for the first time, it may seem offbeat, but it's one of the most important concepts in this exercise. So now add the $ as below.

=(D2*Parameters!$B$6)+(E2*Parameters!$B$7)

Now see if you can do the COGS in cell G2It is like above, but each of the factors is different.

Next, Add the anchoring with $ by typing it in, or using the shortcut: F4 key or ?+T (see box).

OK, all of the first row is done; now copy it down (see box)

Now you're done setting up the Revenues tab.

A beautiful shortcut key for anchoring + T on Macs F4 on Win platforms Since it is cumbersome to put in those dollar signs between columns and row numbers, Excel has a special key to enter $ signs for you: F4. Simply select the cell(s) you want to anchor, then press F4. On some laptops you may need to prese Function (Fn) + F4.

A beautiful shortcut for copying. Position the mouse in the lower right-hand corner of the cell until you see the plus sign, then doubleclick. Note that this option can copy the formula down as far as Excel finds data to the left.

Part 2: Prepare Employees Worksheet

Notice the two columns to the right of the Salary column: 'SalaryIncrease' and 'NewSalary'. You will use these columns to project salary increases.
Since the first year of the budget is for next year (not the current year) you can't use the current salaries in the budget. You need to use the projected salaries for next year based on the projected annual salary increase to be given to employees-- which is listed in cell B10 of the Parameters sheet.
(a) enter a formula in the first data row to get the salary increase amount (not percentage) equal to the salary times the salary increase rate
=F2*Parameters!$B$10
Note that you are anchoring the column ($B) and row ($10) because you want to make an absolute reference to the percent salary increase contained in B10 (in other words, you don't want this reference to shift when you copy cells).
(b) Copy this formula all the way down to the remaining rows.
NewSalary: Now that we have the salary increases, compute the corresponding salaries for (i.e., Year 1 in the budget).
Enter a formula in the first data row equal to the Salary plus the SalaryIncrease (no need to anchor here). The correct answer is below.
Copy this formula all the way down to the remaining rows (all cell references should have shifted when you copied the cells).

Part 3: Build DeptSalaries worksheet

While the Employees worksheet informs management about the salary for each employee, it does not allow to see salaries for all employees in each Department. Therefore, we need DeptSalaries.

At first glance, it might seem that all you must do is sort Employees by DeptName ascending; then use SUM to add the range of cells that corresponds to each department.

However, there are two problems with this manual approach. First, you need to manually specify the cell range for each department. After sorting the salaries for ACCT (Accounting), you would have entered the formula =SUM(J2:J7) but if a new employee was hired, then everything is messed up. Second, our example is just a small example (6 departments, 40 employees); but what if there were 50 departments and 5,000 employees?

The solution is to use the SUMIF command, which sums a range only if certain criteria are met. This solves both sorting problem (users can sort Employees any way they like and the results are unaffected) and the scalability problem (if there is lots of data).

The way SUMIF works is, using the logic for the first department ACCT: "Check the column containing DeptName and every time it equals ACCT, sum the range of NewSalary for employees who work in ACCT."
In Excel, the syntax is: =SUMIF(range, criteria, [sum_range]).

This formula will require a mix of anchored cells and relative addressing. Here's why. Excel needs to check the same ranges for all departments and for all salaries; however, we need to use relative addressing so that when we copy the formula down, Excel checks for the next Dept in the list (i.e., ACCT, FIN, etc.). Likewise, to account for the possibility the number of employees could change, you should select the entire columns for DeptName (C:C) and NewSalary (H:H); note: since you selected all possible rows, anchoring is unnecessary. The SUMIF statement for the ACCT department is given below; you need to complete the others on your own.

Part 4: Build Year 1 Expenses

- Salaries: in cell D2, sum all salaries for all departments from the DeptSalaries worksheet using the SUM formula.

- Benefits, bonuses: these expenses are a percentage of salaries. For benefits, in cell D3, multiply the salary sum figure from cell D2 by the benefit rate in the Parameters worksheet cell $B$13. Enter similar formulas for bonuses.

- Business trips, local travel, and computer equipment: these expenses are a fixed amount per employee, so you first need to count the number of employees. Switch to the Parameters sheet and in cell B21 you need to enter a formula to count all employees. To do so, we will use the COUNT formula, which counts the number of cells containing numbers. This way if the number of employees goes up or down, Excel will automatically update all the formulas.

=COUNT(Employees!A:A)

For Business Trips in cell D5 enter the formula

=Parameters!$B$21*Parameters!B15

which multiplies the number of employees by estimated business travel expenses per employee. Do the same for local travel and computer equipment.

Part 5: Prepare Revenues for Year 1
Go to the BudgetMain tab and go to cell B6. You will get started there.
All revenues for year 1 have been estimated already in the Revenue worksheet, but the rows are mismatched. This means you must use the SUMIF command. You will have Excel check ClientCategory (Column B in Revenue - anchored because we need to check the same range for all values) to see which cells match the 4 client categories in BudgetMain (Column A in BudgetMain)
The SUMIF will add up all the amounts for Universities. It inspects each row, one row at a time.
The formula in B6 is:
=SUMIF(Revenues!B:B,BudgetMain!A6,Revenues!F:F)
Notice that A6 is not anchored. That's because when the cell is copied, you want Excel to copy that on a relative basis.
Do a similar formula in B7, B8, B9. Do this by copying - not retyping.
Finally, enter a formula in cell B10 to compute the total projected revenues for year 1, use the SUM formula. It should look like this:
=SUM(B6:B9)

Part 6: : Prepare Revenues for Years 2-5
Estimate the revenues for Year 2 based on the budget you just prepared for Year 1 and revenue increase projections per below:

- In cell C6 of the BudgetMain: calculate the projected revenue from university clients using =B6*(1+Parameters!$B$2). - That is, the university revenue in Year 1, times 1 + the university revenue increase rate, which is the number in the Parameters sheet. - Do similar formulas for Government, Institutions, and Businesses - Copy the total from B10 into C10
Now using the power of cell anchoring, you can build the projected budget very quickly for Year 2 and into the future. This is when knowing which cells to anchor and which ones not to anchor really pays off.
If all your formulas for Year 2 are properly constructed, all you need to do is copy all of them to Year 3 and beyond. To do so, highlight C6 to C10 and then follow the box to copy.

When you're done with this you should have 5 years of revenues in Row 10.

Part 7: Prepare your first chart

Prepare a quick Revenue Chart, the first of several charts that you will prepare. Create a simple bar graph to display trends to visualize the company's revenues.

First, make sure you're on the BudgetMain worksheet.

Highlight Columns B-F in Row 10.

Now, Set up the new chart. To do this, choose Insert in the Ribbon. Then Select the "2D column" chart from the picklist.

A chart appears with values it extracts from the sheet. But the X axis lists 1, 2, 3, 4, 5 instead of Year. To fix that you need to tell Excel to point to the years in the table. Select the chart you just created. Then, on the ribbon, choose: Select Data. In the new window, choose: Horizontal Axis. Click Edit. Highlight the year labels in Row 4.

Attachment:- Instrction lab.zip

Verified Expert

This is a two-part assignment: the Lab will be completed in class – only cells highlighted in blue are part of this lab – all other cells will be completed in a subsequent homework. rename it according to the following convention: ITEC200-00X_last name_first name_Lab4 (where 00X = your section number)-( Please add the section number in the file name rename has already be done from our end )

Reference no: EM132149919

Questions Cloud

What was the standard deviation : The mean was 95 and the variance was 25. What was the standard deviation?
What type of test can be used to analyze the data : You created a new parenting program and you are interested in testing its impact on parenting skills. To do so, you recruit a sample of parents
Calculate the current ratio : Calculate the current ratio, debt ratio, profit margin, and inventory turnover of the company - Explain what each calculated ratio tells you about how well
Estimate the proportion of americans : Using the data, estimate the proportion of Americans over 33 who smoke. Enter your answer as a fraction or a decimal number rounded to three decimal places.
Prepare a quick revenue chart : ITEC-200 Excel Budget Report Lab - Estimate the revenues for Year 2 based on the budget you just prepared for Year 1 and revenue increase projections per
Can you predict what will be hot in the near future : What are some products that make their appeals primarily to the id? What are some products that make their appeals to the superego?
Residents perceptions of police officers : What type of test can be used to analyze the data in order to compare African American, Hispanic/Latino, and White residents' perceptions of police officers?
What were their challenges that executive leadership faced : What were their challenges that the Executive Leadership faced; how were they overcome? What kind of problem is being investigated?
Evaluate the two most important financial ratios : Evaluate the two (2) most important financial ratios that you will use to track the health of the business and explain how each would provide insight.

Reviews

urv2149919

11/28/2018 11:18:18 PM

I have got my work, ALthough it seems good but still I will understand how it is implemented. However thank you very much to help me out. I will send you my new assignment soon. Excellent service. Customer care was good 24/7. Instant chat now service is very good. Thanks for all help punctual in time. better way to explanation. thank you so much

Write a Review

Basic Computer Science Questions & Answers

  Design and implement a name_pairs class

Provide a sort() operation that sorts the name vector in alphabetical order and reorganizes the age vector to match. Implement all "operations" as member functions. Test the class (of course: test early and often).

  Changes in economic conditions

How would you shift the aggregative demand curve to represent each of the following changes in economic conditions?

  Is the death rate among the movie crew unusually high

Cancer experts estimate that one would expect only about 30 cancer deaths in a group this size.

  What is the final value of loopcount

What is the final value of loopCount after control exits the following loo? loopCount = 1; NL while ( loopCount

  Describe the two idps detection approaches

Describe the two IDPS detection approaches and discuss the advantages and disadvantages both.

  How a car fuel efficiency varies with its speed

Slower is cheaper? Researchers studying how a car's Fuel Efficiency varies with its Speed drove a compact car 200 miles at various speeds on a test track.

  Explain mpeg''s design in terms of these features

A video compression standard for multimedia applications," given in this chapter's "Further Reading" section, for further ideas.) Explain MPEG's design in terms of these features.

  Write a method called doublelist that doubles size of a list

If the original list contains N nodes, then you should construct exactly N nodes to be added. You may not use any auxiliary data structures such as arrays or ArrayLists to solve this problem. Your method should run in O(N) time where N is the numb..

  Instability of the international foreign exchange

Volatility and instability of the International foreign exchange market primarily derived the emergence of financial derivatives as hedging, speculative and arbitrate instruments. Discuss

  Slavery the ancient romans

A historian was quoted as saying that if it hadn't been for slavery the ancient Romans would have had color television. What economic conclusions can you draw from that statement? (Macro Economics beginning chapters)

  Safaris come in a wide range of versions

People often travel to Africa to go on safaris. Safaris come in a wide range of versions. Some are very rough and basic

  What is the image of computer programmer in popular culture

What is the image of the computer programmer in popular culture? Is the image different in books than in TV shows and movies? Would you like a programmer image for yourself, and if so, which one?

Free Assignment Quote

Assured A++ Grade

Get guaranteed satisfaction & time on delivery in every assignment order you paid with us! We ensure premium quality solution document along with free turntin report!

All rights reserved! Copyrights ©2019-2020 ExpertsMind IT Educational Pvt Ltd