Not sure if this has been posted before (I hadn’t come across it in my last month of browsing):
I was finding that it was a little visually difficult to track all Uncategorized transactions from the Transactions sheet, so I made a few changes that make it a lot easier to now know exactly 1) How many transactions are Uncategorized and 2) Visually see those exact rows.
To get a real time number of Uncategorized transactions, replace the formula in A1 of the Transactions sheet with the following:
=if((countif(Transactions!D:D,"") > 0), (countif(Transactions!D:D,"")),(image("https://storage.googleapis.com/assets.templates.tillermoney.com/Tiller_Icon_Reverse%402x.png")))
This will show the number of Uncategorized transactions in cell A1 (and replace the Tiller logo). If there are no Uncategorized transactions, then the Tiller logo will be displayed. Note: If your Categories column is different than D, then you need to replace all instances of “D” in the above formula with the Categories column in your sheet.
Additionally, if you’d like to style cell A1 when there is 1 or more uncategorized transactions (to make it stand out more), you can do so by creating a Conditional Formatting rule (Format → Conditional Formatting → Add A Rule), where if the “Value is greater than 0” it gets applied. Make sure cell $A$1 is specified in the “Apply to Range” field. I chose a red cell color and white text color with a slightly larger text size.
Next, to highlight any row that has an Uncategorized transaction, select the blank space to the left of “A” (column) and above “1” (row) to select all cells, then go to Format → Conditional Formatting → Add A Rule → Make sure the entire range of your sheet is included in the “Apply to Range” field, select “Custom Formula” for the “Format Rules If” section, and add the following formula:
=$D1=""
Note: If your Categories column is different than D, then you need to replace “D” in the above formula with the Categories column in your sheet.
Then, select a Fill Color in the “Formatting Style” section (I chose a light red). Finally, Hit “Done”.
Now, whenever you have an Uncategorized transaction(s), the number will appear in the A1 cell, and the uncategorized transaction rows will highlight with the color/font choices you selected on the Conditional Formatting page. As you apply Categories to the Uncategorized rows, the shading will disappear for said rows and the number in A1 will adjust accordingly until there are no uncategorized rows left. When, there are none left, the Tiller logo reappears in A1.
I’ve found this to be helpful, I hope you do, too.