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

  Perform the normalization process to convert

Perform the normalization process to convert

  Explains this empirical observation

Which theory of unemployment, frictional or structural, best explains this empirical observation?

  Discuss problem of the enhanced class

Let us suppose you are unhappy with the limitations of the java.awt.Rectangle class, and so you subclass it to get an Enhanced Rectangle class.

  Information total debt-total assets

You are given the following information total debt/total assets= 0.35 and total assets turnover=2.8. What is the net profit margin?

  Describe testing execution for system

Test execution may be more sensitive to different environments that the other major testing activities. Describe testing execution for systems your are working on and compare it to the generic test execution issues we discussed in this chapter.

  What these three things(rob, rs, rsr) explain

What these three things(ROB, RS, RSR)  explain  ?

  Characteristic that prevents the long run adjustments

Explain the characteristic that prevents the long run adjustments that happen in perfect competition from happening with a monopoly

  Implement a string adt

Build a Stir type class to implement a string ADT as described at the beginning of this section. Use a dynamic char array to store the string

  Analyzing the detailed requirements of your prototype data

Design a database prototype that includes diagrams, data dictionary, design decisions, limitations, etc. The database should consist of at least four tables, two different user roles, and two reports.

  Salaries and proposed wage increases of your coworkers.

1. Take a position on whether or not you believe most employees abide by their organization's AUP. Support your position with an explanation. Propose ways that an organization can enforce this policy. 2. Suppose your department manager accidentally s..

  Describe the octave method

Describe a case study from your search where octave was used to make decisions. How did those decisions impact the Organizations IT Assets.

  How can we calculate the probability for each outcome

What does it mean? How do we get that? How can we calculate the probability for each outcome?

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