Skip to main content

Create a dividend income tracker with Google Sheets by simply using pivot tables

As my investment strategy is to buy stocks that pay regular and stable dividends during a long-term period, I need to monitor my dividends income by stocks, by months, and by years, so that I can answer quickly and exactly the following questions:

  • How much dividend did I receive on a given month and a given year?
  • How much dividend did I receive for a given stock in a given year?
  • Have a given stock's annual dividend per share kept increasing gradually over years?
  • Have a given stock's annual dividend yield been stable over years?

In this post, I explain how to create a dividend tracker for a stock investment portfolio with Google Sheets by simply using pivot tables.

How to create dividend tracker with Google Sheets

Manage stock transactions with Google Sheets

I use a spreadsheet on Google Sheets to keep track of my stock portfolio's transactions. I insert a new transaction into the spreadsheet whenever I deposit money, withdraw money, use deposited money to buy stocks, receive money by selling stocks, and receive dividends by holding stocks. Each transaction is a row containing information about Date, Type, Symbol, Amount and Shares of that transaction. For further details, you should read my post Manage stock transactions with Google Sheets.

Use Google Sheets to manage transactions of a stock investment portfolio

Create dividend tracker with Google Sheets

My questions in the introduction can be answered by finding relationships in terms of dividends between months and years or between stocks and years. In the same time, a pivot table helps to see relationships between data points in a spreadsheet. Therefore a dividend tracker here is a combination of several pivot tables originated from the Transactions sheet.

Track annual dividend amount of stocks

Here are the steps to create a pivot table to track annual dividend amount of stocks:

  • As a preparation step, I create a support column (Year) for the year of each transaction. Year is derived from the Date column with this function: =YEAR(A2)
  • To create a pivot table fom the transactions, I follow the steps below:
    • Select all used columns in the Transactions sheet.
    • In the menu at the top, click Insert and then Pivot table.
    • Select the newly created pivot table sheet, if it’s not already open.
  • As I want to know the annual dividend amount contributed by a given stock, I need to configure a pivot table as follow:
    • In the Rows section, I click Add and select Symbol from the dropdown list.
      • All symbols that appeared in transactions will be displayed as rows in the pivot table.
      • I keep checked the Show totals check box because I want to know the total dividend contributed by a given stock since the beginning.
    • In the Columns section, I click Add and select Year from the dropdown list.
      • All years that appeared in transactions will be displayed as columns in the pivot table.
      • I keep checked the Show totals check box because I want to know the total dividend contributed by all stocks on a given year.
    • In the Values section, click Add, select Amount from the dropdown list, and choose Sum in the Summarize by select box.
    • In the Filters section, I choose to filter by Type of transactions and select only DIVIDEND value in the dropdown list.

Configure pivot table in Google Sheets to make a dividend tracker

As a result, I have a table with columns being years (sorted ascending), rows being stocks, and cells being the dividend amounts. I can quickly know the dividend amount contributed by any stock on any year by simply locating the corresponding cell in the table. In short, the pivot table gives me an overview picture of how much dividend each stock has contributed in each year and helps me to compare their performance.

Track annual dividend amount of stocks with Google Sheets by using a pivot table

Note: In fact, with all transactions tracked, it is not difficult to compute the amount of dividend contributed by a given stock on a given year, without using a pivot table.

For example, to know the amount of dividends contributed by the stock EPA:CS during the year 2020, I just simply need to sum the column Amount of all transactions, where:

  • TYPE is DIVIDEND
  • SYMBOL is EPA:CS
  • DATE is after 31/12/2019
  • DATE is before 01/01/2021

I can use the built-in SUMIFS function:

=SUMIFS(Transactions!D:D,Transactions!B:B,"DIVIDEND",Transactions!C:C,"EPA:CS",Transactions!A:A,">12/31/2019",Transactions!A:A,"<01/01/2021")

However, I need to repeat that formula if I want to query for another symbol or another year. Moreover, this way doesn't give me an overview picture of the dividends contribution among all stocks over years, as does a pivot table.

Track dividend amount by month and by year

To track dividend amount by month and by year, I just need to do another pivot table based on the same approach.

  • As a preparation step, I create a support column (Month) for the month of each transaction. Month is derived from the Date column with this function: =MONTH(A2)
  • I follow the same steps to create a pivot table from the transactions, and then configure it:
    • In the Rows section, I add Month as rows and sort them ascending. I keep checked the Show totals check box because I want to know the total dividend collected on a given month over all years.
    • In the Columns section, I add Year as columns and sort them ascending. I keep checked the Show totals check box because I want to know the total dividend collected in a given year.
    • In the Values section, I add Amount and choose Sum in the Summarize by select box.
    • In the Filters section, I choose to filter by Type of transactions and select only DIVIDEND value in the dropdown list.

Configure pivot table in Google Sheets to make a dividend tracker

As a result, I have a table with columns being years (sorted ascending), rows being months (sorted ascending), and cells being the dividend amounts. I can quickly know the dividend amount collected in any month of any year by simply locating the corresponding cell in the table. In short, the pivot table gives me an overview picture of how regularly and stably I have collected dividends.

Track dividend distribution by month and by year with Google Sheets by using a pivot table

Track annual dividend per share of stocks

Because each transaction is registered with the Amount and the number of Shares, it is easy to calculate the dividend per share on each transaction. To know the annual dividend per share of a stock, I can simply sum dividend per share of all transactions for that stock on a year.

To track the annual dividend per share of stocks, I just need to do another pivot table based on the same approach.

  • As a preparation step, I create a support column (Transaction Unit) for amount by share of each transaction. The column is derived from the Amount column and the Shares column with this function: =IF(ISBLANK(E2),,D2/E2)
  • I follow the same steps to create a pivot table from the transactions:
    • In the Rows section, I add Symbol as rows.
    • In the Columns section, I add Year as columns and sort them ascending.
    • In the Values section, I add Transaction Unit and choose Sum in the Summarize by select box.
    • In the Filters section, I choose to filter by Type of transactions and select only DIVIDEND value in the dropdown list.

As a result, I have a table with columns being years (sorted ascending), rows being stocks, and cells being the annual dividend per share. If I hold shares of a company long enough, the table allows me to track how the annual dividend per share of my holding stocks evolve over time.

Track annual dividend per share of stocks with Google Sheets by using a pivot table

Note: On the table, the dividend per share might not be the actual dividend per share of a stock in a given year. For example, in 2019, a company distributed dividends every quarter and I hold its shares for only 3 quarters, I would receive only 3 dividend payments. As a result, the tracker takes only into account those 3 dividend payments while calculating the dividend per share for that stock in 2019.

Track annual dividend yield of stocks

The annual dividend yield is a result of dividing the annual dividend per share by the price per share. As the annual dividend per share is already computed in the previous section, to compute the annual dividend yield, I still need to identify the price per share. However, during a year, a stock has many price points, and which one should be used among the price on the last day of year, the average price during a year, etc.? As an investor who keep track carefully transactions for a stock, I can easily know the cost per share of a stock in my portfolio. Therefore, I use the cost per share as a reference price to compute the dividend yield.

The cost per share of a stock in my portfolio is a result of dividing its cost by the number of shares that I have for that stock.

  • The cost is the sum of Amount for all BUY an SELL transactions related to that stock.
  • The number of shares is the sum of Shares for all BUY and SELL transactions related to that stock.

For example, to compute the unit cost for the EPA:CS stock until 01/01/2021, I need to compute how much money I have invested in that stock in exchange for how many shares (until 01/01/2021). It is not a difficult task by using SUMIFS function of Google Sheets:

Sum all Amount of BUY, SELL transactions for the EPA:CS stock until 01/01/2021
=ABS((SUMIFS(D:D,C:C,"EPA:CS",A:A,"<=01/01/2021",B:B,"BUY") + 
SUMIFS(D:D,C:C,"EPA:CS",A:A,"<=01/01/2021",B:B,"SELL")))

Sum all Shares of BUY, SELL transactions for the EPA:CS stock until 01/01/2021
=(SUMIFS(E:E,C:C,"EPA:CS",A:A,"<=01/01/2021",B:B,"BUY") + 
SUMIFS(E:E,C:C,"EPA:CS",A:A,"<=01/01/2021",B:B,"SELL"))

The unit cost for the EPA:CS stock on 01/01/2021 is:
=ABS((SUMIFS(D:D,C:C,"EPA:CS",A:A,"<=01/01/2021",B:B,"BUY") + SUMIFS(D:D,C:C,"EPA:CS",A:A,"<=01/01/2021",B:B,"SELL"))) / 
(SUMIFS(E:E,C:C,"EPA:CS",A:A,"<=01/01/2021",B:B,"BUY") + SUMIFS(E:E,C:C,"EPA:CS",A:A,"<=01/01/2021",B:B,"SELL"))

To track the annual dividend yield of stocks, I just need to do another pivot table based on the same approach.

  • As a preparation step, I create 4 support columns in the Transactions sheet:
    • Cost After A Transaction: is the cost for the stock presented in the transaction, taken into account the transaction's impact
    • Shares After A Transaction: is the number of shares for the stock presented in the transaction, taken into account the transaction's impact
    • Unit Cost After A Transaction: is the unit cost for the stock presented in the transaction, taken into account the transaction's impact
    • Dividend Yield Based On Unit Cost: is the transaction unit divided by the unit cost in case of a DIVIDEND transaction, taken into account the transaction's impact
Cost After A Transaction on the cell I2:
=IF(ISBLANK(C2),"",ABS((SUMIFS(D:D,C:C,C2,A:A,"<="&A2,B:B,"BUY") + SUMIFS(D:D,C:C,C2,A:A,"<="&A2,B:B,"SELL"))))

Shares After A Transaction on the cell J2:
=IF(ISBLANK(C2),,(SUMIFS(E:E,C:C,C2,A:A,"<="&A2,B:B,"BUY") + SUMIFS(E:E,C:C,C2,A:A,"<="&A2,B:B,"SELL")))

Unit Cost After A Transaction on the cell K2:
=IF(J2>0,I2/J2,"")

Dividend Yield Based On Unit Cost on the cell L2:
=IF(B2="DIVIDEND",H2/K2,"")
  • I follow the same steps to create a pivot table from the transactions:
    • In the Rows section, I add Symbol as rows.
    • In the Columns section, I add Year as columns and sort them ascending.
    • In the Values section, I add Dividend Yield Based On Unit Cost and choose Sum in the Summarize by select box.
    • In the Filters section, I choose to filter by Type of transactions and select only DIVIDEND value in the dropdown list.

As a result, I have a table with columns being years (sorted ascending), rows being stocks, and cells being the approximate annual dividend yield. The important thing is that those dividend yields are calculated based on my actual cost per share for those stocks in my portfolio. In short, the pivot table gives me an insightful picture to compare the performance in terms of annual dividend yield among my holding stocks.

Track annual dividend yield of stocks with Google Sheets by using a pivot tabl

Note: The annual dividend yield calculated by this way must be understood with cautious, because it is the sum of all dividend yields during one year. For example, if a stock pays dividend several times a year and in the same time, its unit cost fluctuates greatly during that one year, the sum of dividend yields might be abnormal.

Demo

Demo spreadsheet: sample dividend tracker with Google Sheets

The sample dividend tracker spreadsheet includes:

  • Transactions sheet stores all transactions of the sample portfolio.
  • Annual Dividend Amount sheet contains the pivot table showing dividend amount by stocks and by years.
  • Dividend Amount By Month By Year sheet contains the pivot table showing dividend amount by months and by years.
  • Annual Dividend Per Share sheet contains the pivot table showing annual dividend per share of stocks.
  • Annual Dividend Yield sheet contains the pivot table showing annual dividend yield of stocks.
  • Annual Dividend Amount, Dividend Per Share, Yield sheet contains the pivot table showing annual dividend amount, annual dividend per share, annual dividend yield of stocks.

Conclusion

In this post, I have explained step-by-step how to create a dividend tracker with Google Sheets. The process involves registering a portfolio's transactions in a spreadsheet and then creating pivot tables based on those transactions. The dividend tracker gives me an overview picture of my dividend income and helps me adjust my decisions to make my investment strategy always on track.

References

Disclaimer

The post is only for informational purposes and not for trading purposes or financial advice.

Feedback

If you have any feedback, question, or request please:

Support this blog

If you value my work, please support me with as little as a cup of coffee! I appreciate it. Thank you!

Share with your friends

If you read it this far, I hope you have enjoyed the content of this post. If you like it, share it with your friends!

Comments

Popular posts

Use SPARKLINE to create 52-week range price indicator chart for stocks in Google Sheets

Use SPARKLINE to create 52-week range price indicator chart for stocks in Google Sheets

The 52-week range price indicator chart shows the relative position of the current price compared to the 52-week low and the 52-week high price. It visualizes whether the current price is closer to the 52-week low or the 52-week high price. In this post, I explain how to create a 52-week range price indicator chart for stocks by using the SPARKLINE function and the GOOGLEFINANCE function in Google Sheets.
Compute cost basis of stocks with FIFO method in Google Sheets

Compute cost basis of stocks with FIFO method in Google Sheets

After selling a portion of my holdings in a stock, the cost basis for the remain shares of that stock in my portfolio is not simply the sum of all transactions. When selling, I need to decide which shares I want to sell. One of the most common accounting methods is FIFO (first in, first out), meaning that the shares I bought earliest will be the shares I sell first. As you might already know, I use Google Sheets extensively to manage my stock portfolio investment, but, at the moment of writing this post, I find that Google Sheets does not provide a built-in formula for FIFO. Luckily, with lots of effort, I succeeded in building my own FIFO solution in Google Sheets, and I want to share it on this blog. In this post, I explain how to implement FIFO method in Google Sheets to compute cost basis in stocks investing.
Create personal stock portfolio tracker with Google Sheets and Google Data Studio

Create personal stock portfolio tracker with Google Sheets and Google Data Studio

I have been investing in the stock market for a while. I was looking for a software tool that could help me better manage my portfolio, but, could not find one that satisfied my needs. One day, I discovered that the Google Sheets application has a built-in function called GOOGLEFINANCE which fetches current or historical prices of stocks into spreadsheets. So I thought it is totally possible to build my own personal portfolio tracker with Google Sheets. I can register my transactions in a sheet and use the pivot table, built-in functions such as GOOGLEFINANCE, and Apps Script to automate the computation for daily evolutions of my portfolio as well as the current position for each stock in my portfolio. I then drew some sort of charts within the spreadsheet to have some visual ideas of my portfolio. However, I quickly found it inconvenient to have the charts overlapped the table and to switch back and forth among sheets in the spreadsheet. That's when I came to know the existen
How to convert column index into letters with Google Apps Script

How to convert column index into letters with Google Apps Script

Although Google Sheets does not provide a ready-to-use function that takes a column index as an input and returns corresponding letters as output, we can still do the task by leveraging other built-in functions ADDRESS , REGEXEXTRACT , INDEX , SPLIT as shown in the post . However, in form of a formula, that solution is not applicable for scripting with Google Apps Script. In this post, we look at how to write a utility function with Google Apps Script that converts column index into corresponding letters.
GOOGLEFINANCE Best Practices

GOOGLEFINANCE Best Practices

Anyone using Google Sheets to manage stock portfolio investment must know how to use the GOOGLEFINANCE function to fetch historical prices of stocks. As I have used it extensively to manage my stock portfolio investment in Google Sheets , I have learned several best practices for using the GOOGLEFINANCE function that I would like to share in this post.
Slice array in Google Sheets

Slice array in Google Sheets

Many functions in Google Sheets return an array as the result. However, I find that there is a lack of built-in support functions in Google Sheets when working with an array. For example, the GOOGLEFINANCE function can return the historical prices of a stock as a table of two columns and the first-row being headers Date and Close. How can I ignore the headers or remove the headers from the results?
Demo stock investment portfolio tracker with Google Sheets and Google Data Studio

Demo stock investment portfolio tracker with Google Sheets and Google Data Studio

I am happy to announce the release of LION stock portfolio tracker. It is a personal stock portfolio tracker built with Google Sheets and Google Data Studio. The stock portfolio's transactions are managed in Google Sheets and its performance is monitored interactively on a beautiful dashboard in Google Data Studio. You can try with the demo below and follow the LION stock portfolio tracker guide to create your own personal stock portfolio tracker with Google Sheets and Google Data Studio.
How to use WEEKDAY function to get last Friday in Google Sheets

How to use WEEKDAY function to get last Friday in Google Sheets

As I manage my stock investment portfolio in Google Sheets, I need to see its evolution over time, for example, in the last year. However, the computation for daily evolution is resource-consuming and might cause performance issues for the spreadsheet. As an alternative, I compute only the weekly evolution of the investment portfolio for the last year. For each week, I compute only the portfolio's value at the end of the Friday. For that, I need a Google Sheets formula to return the last Friday for a given date. This post explains how I do that with the WEEKDAY formula in Google Sheets.