Sunday 24 March 2019

Manage Mutual Fund Portfolio using Google Sheets

Do you hold a mutual fund portfolio, want to understand a snapshot in a easy to maintain way?  If so, please read on.


  1. Create a spreadsheet on Google Spreadsheets.  Name the spreadsheet as you need.
  2. Let us create a sheet and name the sheet as "NAV".  This sheet will hold all the latest NAV and will be updated with latest price automatically.  Let us visit this sheet later for automating the price update.
  3. Now, let us create a new sheet, call it "Portfolio".  
  4. Create columns in the 1st row as follows:
    • AMFI Scheme ID
    • Account Number
    • AMC
    • Scheme Name
    • Unit Balance
    • Cost - Dividends
    • Value
    • Returns
    • Return (%)
    • AV Cost / Unit
    • NAV
    • NAV Date
  5. Let us shift the tab to "NAV".  In the column A1 enter the formula as
    • =IMPORTDATA("https://www.amfiindia.com/spages/NAVAll.txt")
  6. This will update the NAV automatically and we will use this data to update information in our portfolio.  This will have following columns now:
    • Scheme Code
    • ISIN Div Payout / ISIN Growth
    • ISIN Div Reinvestment
    • Scheme Name
    • Net Asset Value
    • Date
  7. Now find the scheme you have invested in from the NAV tab and get the Scheme Code and copy to AMFI Scheme ID column on "Portfolio" sheet.  Similarly you can copy the Scheme Name.
  8. Get your statement from the AMC and update the Unit Balance, Cost - Dividends columns.
  9. In the "Portfolio" sheet enter the formula against NAV
    • =INDEX(SPLIT(VLOOKUP(A2&"*",NAV!$A$1:$A$20501,1,false),";"),,5)
  10. In the "Portfolio" sheet enter the formula against NAV Date
    • =INDEX(SPLIT(VLOOKUP(A2&"*",NAV!$A$1:$A$20501,1,false),";"),,6)
  11. Value column is the product of Units x NAV
  12. Returns is Value-(Cost-dividends)
  13. Return % is Returns / (Cost-dividends)
  14. AV Cost / Unit is (Cost-dividends) / Unit Balance
  15. Now create a summary line in the bottom for Cost-Dividends, Value, Returns and Return %
Voila! Your portfolio will be updated automatically when you open the spreadsheet.  Just ensure you update unit balance and cost-dividends for accurate computations.


No comments:

Post a Comment