Share via

Adding recurring expenses to budget sheets

Anonymous
2016-03-24T05:21:06+00:00

Hi everyone!

I created a budget sheet for my wife and I. All of our receipts are gathered and inserted into one "expense table". But just like most people, we have recurring expenses each month; such as rent, car payments etc. I was wondering if it would be possible to have a second table(recurring expenses) beside the expense table that can automatically be added to the expense table after that date has arrived. Its such a hassle adding recurring payments every month (they're easy to forget!).

Table Eg:

Expenses (random receipts)                                           Recurring Expenses (rent etc.)

Date/Person/Category/ Subcategory/ Amount                 Date/Person/Category/ Subcategory/ Amount       

The only difference is the date category. The expense category (date) is an actual selected date from a calendar (date/month/year), while the recurring expense (day) entry is a day such as the 1st etc.. 

I've been researching this idea but have had no luck. I feel my internet search description is hard to explain with one sentence. I've had no luck finding anything related to what I'm looking for.

Recap:

Expenses (random receipts)                                           Recurring Expenses (rent etc.)

Date/Person/Category/ Subcategory/ Amount                 Date/Person/Category/ Subcategory/ Amount       

- 3/23/2016***/*** Me***/*** Transportation***/*** Gas / $80.00              24th of each month*/** Me**/** Transportation /* Vehicle financing*******/*** $200

  • 3/23/2016 /Me / Household**/** Groceries**/** $75.00

Question: Is there a way to automatically add the recurring expenses into the expense log every time that date has arrived (with the computers time)?  I'd like to see this on the 24th(of every month):

Recap:

Expenses (random receipts)                                           Recurring Expenses (rent etc.)

Date/Person/Category/ Subcategory/ Amount                 Date/Person/Category/ Subcategory/ Amount       

- 3/23/2016***/*** Me***/*** Transportation***/*** Gas / $80.00              24th of each month*/** Me**/** Transportation / Financing /* $200

  • 3/23/2016 /Me / Household/ Groceries**/** $75.00

-3/24/2016***/*** Me / Transportation***/*** Financing***/*** $200

I know this is difficult but any help or suggestions would be appreciated!

Thanks for your time!

Justin

Microsoft 365 and Office | Excel | For home | Windows

Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.

0 comments No comments

Answer accepted by question author

Anonymous
2016-03-28T16:54:16+00:00

You don't need to enter the values from the right-hand table into the left-hand table - you can include those values by modifying your overall formulas.

Or you can have one table, with enough recurring entries (with formulas for amounts) at the top to cover the time period of interest, with non-recurring entries below:

https://onedrive.live.com/redir?resid=5BF1835FB3CB9DC2!242&authkey=!ALnZ2ThXZoHlT6E&ithint=file%2cxlsx

Was this answer helpful?

0 comments No comments

3 additional answers

Sort by: Most helpful
  1. Anonymous
    2016-04-01T00:09:32+00:00

    Thanks Bernie!

    I took a look at your example spread sheet. Very helpful! I'll just get rid of my recurring expense table all together.

    Thanks!

    Was this answer helpful?

    0 comments No comments
  2. Anonymous
    2016-03-26T07:10:50+00:00

    Hey Bernie, thanks for your reply!

    So I tried your solution but ran into some problems. After following your steps, this is what I ended up with:

    Expenses (random receipts)                                          Recurring Expenses (rent etc.)

    Date/Person/Category/ Subcategory/ Amount           Date/Person/Category/ Subcategory/ Amount

    - 3/23/2016***/*** Me / Transportation***/*** Gas / $80.00            24th*/** Me**/** Transportation /* Vehicle financing*******/*** $200

    • 3/23/2016 /Me / Household**/** Groceries**/** $75.00           2016 -03 -24 ***/***Blank / Blank ***/***Blank / Blank

    (I forgot to mention "person, category, and subcategory" are all drop select lists with data validation { not sure if that helps} ).

    I followed the steps to ensured all formulas are in the correct cells and that the cell links inside the formulas are in the proper spot. After I entered your formula in the cell below "date" in recurring expenses, I had a bold date with a double border on top of that entire table row. 

    Just so we're on the same page,

    I'm looking to have a bunch of recurring monthly expenses in the right hand table that automatically get entered in the left hand table every time that date passes. I'm hoping that every time I open excel and the 24th passes, a vehicle financing expense of $200 is added to the left hand table automatically (just so I don't have to remember every time a recurring payment is).

    I feel like we should have a formula that links the expense table with the recurring table at some point?

    Thanks for your help!

    Was this answer helpful?

    0 comments No comments
  3. Anonymous
    2016-03-24T14:30:35+00:00

    In the recurring expenses, enter everything including the dates that the payment will be made for one month, such as 1/1, 1/5, 1/7 1/24, etc, but in the amount column, use a formula like

    =IF(TODAY()>=H2,200,"Pending")

    where H2 is the cell with the date of the payment, and 200 is the payment required.  You can also return 0 until the date is reached:

    =IF(TODAY()>=H2,200,0)

    Then, in the cell below your last date, use the formula

    =DATE(YEAR(H2),MONTH(H2)+1,DAY(H2))

    where H2 is the cell with the first of your dates. Then copy that down until you get to December (with enough rows for all your December entries), then copy your descriptions and the amount formulas to match your new dates.

    Was this answer helpful?

    0 comments No comments