+ Reply to Thread
Results 1 to 6 of 6

Creating 5 year Monthly Budget - need sequential dates formula/function/vba

  1. #1
    Registered User
    Join Date
    04-01-2018
    Location
    Edmonton, Canada
    MS-Off Ver
    2013
    Posts
    3

    Creating 5 year Monthly Budget - need sequential dates formula/function/vba

    Hi there,

    I am new to Excel 2013/2016. I am creating a household financials and want to build 5 years of monthly budgets. I would like to have a formula, function or vba to copy the data of "1 Jan 2018" in cell B3 on Sheet '1 Jan 2018' to the second sheet named '1 Feb 2018' placing the next month "1 Feb 2018" in Cell B3.

    I found a vba that was able to copy across sequentially the worksheet names adding one month per sheet 1 Jan 2018 + 1 Month x 60 sheets using cells on a hidden sheet. It worked great but I cant figure out how to do this for a cell.

    Thanks so much for the help, if anyone can provide it!

    Cheers

  2. #2
    Forum Expert
    Join Date
    08-16-2015
    Location
    Antwerpen, Belgium
    MS-Off Ver
    2007-2016
    Posts
    2,380

    Re: Creating 5 year Monthly Budget - need sequential dates formula/function/vba

    Why you want 60 tabs with same data ?

    Kind regards
    Leo

  3. #3
    Forum Guru bakerman2's Avatar
    Join Date
    10-03-2012
    Location
    Antwerp, Belgium
    MS-Off Ver
    MO Prof Plus 2016
    Posts
    6,907

    Re: Creating 5 year Monthly Budget - need sequential dates formula/function/vba

    Post the code you are using to create the sheets.
    Avoid using Select, Selection and Activate in your code. Use With ... End With instead.
    You can show your appreciation for those that have helped you by clicking the * at the bottom left of any of their posts.

  4. #4
    Registered User
    Join Date
    04-01-2018
    Location
    Edmonton, Canada
    MS-Off Ver
    2013
    Posts
    3

    Re: Creating 5 year Monthly Budget - need sequential dates formula/function/vba

    5 year monthly budget sheets (5*12=60) Cell B3 is the Day-Month-Year, workbook will have many more sheets financial statements etc. Trying to build a template. I just cant figure out how to produce the dd/mm/yy in a sequence across 60 sheets.

  5. #5
    Registered User
    Join Date
    04-01-2018
    Location
    Edmonton, Canada
    MS-Off Ver
    2013
    Posts
    3

    Re: Creating 5 year Monthly Budget - need sequential dates formula/function/vba

    Quote Originally Posted by bakerman2 View Post
    Post the code you are using to create the sheets.
    This is the code I used to "Name" the Sheets the dd/mm/yy. Plan is to create a 5 year (5*12=60) budget template with multiple more sheets; such as, acc pay, acc recieve, inc/exp, financial, amortizations, net worth. etc.

    Sub RenameSheets()
    Dim c As Range
    Dim J As Integer

    J = 0
    For Each c In Range("C2:C61")
    J = J + 1
    If Sheets(J).Name = "Control" Then J = J + 1
    Sheets(J).Name = c.Text
    Next c
    End Sub
    Where "Control" Sheet will be hidden. In the Control sheet, I have a simple data set with A1 Date / B1 Month / C1 Result using =EDATE(A2,B2).

    Result C2 = 1-Jan-2018
    Result C3 = 1-Feb-2018
    etc.

    Once again. Im looking for help with a formula, function, or vba to date each sheet sequentially in one specific cell across all 60 budget worksheets. i.e. 1-Jan-2018 + 1 Month = 1-Feb-2018 all the way to 1-Dec-2022 (and then the template would allow me and users (family) to go beyond..

    Every thing I have tried and a friend has tried hasnt worked.

    Thank you so much!

  6. #6
    Forum Guru bakerman2's Avatar
    Join Date
    10-03-2012
    Location
    Antwerp, Belgium
    MS-Off Ver
    MO Prof Plus 2016
    Posts
    6,907

    Re: Creating 5 year Monthly Budget - need sequential dates formula/function/vba

    Let's start with this.
    Please Login or Register  to view this content.

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Help with creating a monthly budget planner
    By electriczen in forum Excel Formulas & Functions
    Replies: 1
    Last Post: 12-15-2022, 04:09 AM
  2. Replies: 1
    Last Post: 01-21-2016, 02:36 AM
  3. changing dates 4 weekly / monthly in a year
    By rikkyshh in forum Excel Programming / VBA / Macros
    Replies: 0
    Last Post: 10-04-2014, 06:35 AM
  4. Pulling weekly budget data into monthly budget
    By MarkRabbit in forum Excel General
    Replies: 4
    Last Post: 10-19-2008, 04:28 PM
  5. monthly budget/check registry spreadsheet formula
    By votequimby in forum Excel General
    Replies: 0
    Last Post: 07-17-2006, 12:02 PM
  6. Divide Monthly Sales Budget to Day budget
    By Benedikt Fridbjornsson in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 01-11-2006, 03:25 PM
  7. [SOLVED] Divide Monthly Sales Budget to Day Budget
    By Benedikt Fridbjornsson in forum Excel Formulas & Functions
    Replies: 2
    Last Post: 01-10-2006, 11:45 AM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1