Sample Data
| Investment | Initial Value | Current Value | Return (%) |
|------------|---------------|---------------|------------|
| Stock A | 10000 | 12000 | |
| Stock B | 15000 | 14500 | |
| Bond C | 20000 | 20500 | |
To perform the tasks outlined in Assignment using Excel, follow these step-by-step instructions:
Step to Solve:
To calculate the ROI for each investment, use the formula:
ROI (%)=(Current Value−Initial ValueInitial Value)×100\text{ROI (\%)} = \left( \frac{\text{Current Value} - \text{Initial Value}}{\text{Initial Value}} \right) \times 100ROI (%)=(Initial ValueCurrent Value−Initial Value)×100
Apply this formula for each investment:
· Stock A:
· Stock B:
· Bond C:
To calculate the annualized return for the entire investment portfolio using XIRR:
Example: Assuming initial investments occurred on 01-Jan-2023 and current values are on 31-Dec-2023, the XIRR function could be used as follows:
=XIRR({-10000, -15000, -20000, 12000, 14500, 20500}, {DATE(2023,1,1), DATE(2023,1,1), DATE(2023,1,1), DATE(2023,12,31), DATE(2023,12,31), DATE(2023,12,31)})
This will give you the annualized return for the entire portfolio.
To visualize the contribution of each investment to the overall portfolio return using a waterfall chart:
Waterfall charts visually show how each investment contributes positively or negatively to the total portfolio return.
To find the investment with the highest ROI using INDEX and MATCH:
=INDEX(A2:A4, MATCH(MAX(D2:D4), D2:D4, 0))
Assuming Investment names are in A2
and ROI values are in D2
. This formula will return the name of the investment with the highest ROI.
To analyze the impact of varying Current Values on overall portfolio return:
This sensitivity analysis table helps in understanding how changes in individual investments' values affect the entire portfolio's return.