Sample Data
| Product | Unit Price | Qty(Base Case) | Qty(Scenario 1) | Qty(Scenario 2) |
|---------|------------|----------------|-----------------|---------------|
| A | 100 | 500 | 600 | 450 |
| B | 150 | 700 | 800 | 600 |
| C | 80 | 400 | 450 | 350 |
To perform the tasks outlined in Assignment using Excel, follow these step-by-step instructions:
Step to solve:
To calculate the total revenue for each product in the base case, you can use the formula:
Total Revenue=Unit Price×Quantity\text{Total Revenue} = \text{Unit Price} \times \text{Quantity}Total Revenue=Unit Price×Quantity
Here's how you would apply this formula for each product:
· Product A:
· Product B:
· Product C:
To determine the required Unit Price for Product C to achieve a specific revenue target using Goal Seek:
Excel will perform the Goal Seek analysis and adjust the Unit Price of Product C to achieve the specified revenue target.
To analyze the impact of Quantity changes on total revenue using a Data Table:
Excel will create a data table showing Total Revenue for each product at different Quantity scenarios and Unit Prices.
To find the Unit Price for each product in Scenario 1 and Scenario 2 using INDEX and MATCH:
· Assuming Scenario 1 and Scenario 2 quantities are listed in columns D and E, starting from row 2 (assuming row 1 is headers):
o Product A:
=INDEX(B2:B4, MATCH("A", A2:A4, 0))
o Product B:
=INDEX(B2:B4, MATCH("B", A2:A4, 0))
o Product C:
=INDEX(B2:B4, MATCH("C", A2:A4, 0))
· Replace A2
To build a scenario summary report to compare total revenue across different scenarios: