I checked the community a bit but couldn’t get a general sense what the best practice was for the following:
I have some newly Closed accounts that are no longer able to connect (since they are Closed and the Institution has no more active accounts), however, the last pulled balance and the account is still showing up in the Balances sheet. This is causing a skewed Net Worth and Asset or Liability amount, since it’s counting the balance of an account that’s closed. If I set the Closed account to Hide (Column D on the Accounts sheet), it removes it from Balances but it also removes all historical data from Net Worth and other important historical sheets, which is not the intention.
In Mint by Intuit, it was as easy as going to the account management page, selecting “Inactive” under the status, and setting the date of Inactivity. Historical (e.g. Net Worth) data was preserved, but the account was removed from the Balances section.
So, here is my solution to this issue, which requires just a handful of one time edits. It works as intended for Balances and Net Worth as described above.
-
On the Accounts sheet, I chose Data Validation and added another value called “Closed” under the “Hide” option for Column D. I then added a “Closed” value in column “D” (“Hide”) for each of the account rows I wanted to hide from Balances but retain all historical sheets like Net Worth.
-
On the Balances sheet, cell K3, I adjusted the formula as follows:
=iferror(sort(filter({INDIRECT(Y11),INDIRECT(Y12),INDIRECT(Y13)&if(isblank(INDIRECT(Y14)),""," ("&INDIRECT(Y14)&")"),today()-INDIRECT(Y15),Indirect(Y16)},indirect(Y17)="Asset",indirect(Y18)<>"Hide",indirect(Y18)<>"Closed"),2,true, 4, true, 3, true))
All I did with this formula was add ,indirect(Y18)<>“Closed” after indirect(Y18)<>“Hide”
This will just filter out any Accounts with “Closed” in column D (the “Hide” column, in the “Accounts” sheet) for Assets.
- Also, on the Balances sheets, cell R3, I adjusted the formula as follows:
=iferror(sort(filter({INDIRECT(Y11),INDIRECT(Y12),INDIRECT(Y13)&if(isblank(INDIRECT(Y14)),""," ("&INDIRECT(Y14)&")"),today()-INDIRECT(Y15),Indirect(Y16)},indirect(Y17)="Liability",indirect(Y18)<>"Hide",indirect(Y18)<>"Closed"),2,true, 4, true, 3, true))
All I did with this formula was add ,indirect(Y18)<>“Closed” after indirect(Y18)<>“Hide”
This will just filter out any Accounts with “Closed” in column D (the “Hide” column, in the “Accounts” sheet) for Liabilities.
-
Finally, since this Closed account now has a 0 balance, I went into the Balance History sheet and made sure to insert a new row, copying and pasting a previous row with the now Closed account. I updated the Date/Time of that new row to be the date of account closure and set the balance to 0.
-
The only issue remaining is that the Institution that the closed account was connected with no longer connects (this will only happen if ALL accounts are closed at the Institution), so I’m seeing a “1 Feed needs refreshing” message on the Tiller extension in Google Sheets. So, the solution (for me) was to remove that Institution from the Tiller Console. Removing the Institution with no remaining active accounts from Tiller does NOT remove the data from your current sheet. It will, however, remove the data from the Tiller server so keep that in mind in case you need to redownload data into a new sheet at some point in the future. This is a non-issue for me so I removed the inactive account/Institutional connection from the Tiller Console and now no longer see the error trying to connect to an account that is inactive.
Now, I’m able to see all Closed accounts reflected in historical sheets (such as Net Worth), while also no longer seeing that account appear on the Balances sheet, and also no longer seeing a connection error in the Tiller Google extension.