After finding this sight, I got motivated to create my own excel 'something'; and that something is a daily budget worksheet. The worksheet looks like this: Column A lists months, Column B lists days of the month, Column C lists names of expenses, Column D lists dollar amounts, column E is the running account balance.
A B C D E
Dec 11 <blank> <blank> $1000
Dec 12 Property Tax $200 $800
Also, I have a data table listing all the expenses, due dates (two columns 1 for month and 1 for day), and dollar amount. Note that year is not included.
Columns C and D are auto-populated with IF formulas and vlookup formulas that compare the month and day columns with the data in the table. There are limitations to this.
So finally, the question is: Is there a better way to link a date to a cell, instead of using a column for month and a separate column for days? In other words, is there a better way to check the date in a cell and if that date matches the date of an expense, it will populate that cell with the relevant information, like the name of the expense?
A B C D E
Dec 11 <blank> <blank> $1000
Dec 12 Property Tax $200 $800
Also, I have a data table listing all the expenses, due dates (two columns 1 for month and 1 for day), and dollar amount. Note that year is not included.
Columns C and D are auto-populated with IF formulas and vlookup formulas that compare the month and day columns with the data in the table. There are limitations to this.
So finally, the question is: Is there a better way to link a date to a cell, instead of using a column for month and a separate column for days? In other words, is there a better way to check the date in a cell and if that date matches the date of an expense, it will populate that cell with the relevant information, like the name of the expense?