+ Reply to Thread
Results 1 to 4 of 4

syntax to add the first day of the following month

Hybrid View

  1. #1
    Registered User
    Join Date
    01-08-2010
    Location
    Sussex County, Delaware
    MS-Off Ver
    Excel 2013
    Posts
    40

    syntax to add the first day of the following month

    I am trying to find out if there is a way to tell excel to add the first day of the upcoming month when I execute a macro. For example, today is 19 August 2012. If I execute the macro today can I get it to automatically add 1 September 2012 to cell D1?

    Here is my existing macro:

        Range("B1:BM1,D3:BM4,D6:BM67").Select
        Range("BM1").Activate
        Selection.ClearComments
        Selection.ClearContents
        Range("D1").Select

  2. #2
    Forum Moderator jeffreybrown's Avatar
    Join Date
    02-19-2009
    Location
    Cibolo, TX
    MS-Off Ver
    Office 365
    Posts
    10,327

    Re: syntax to add the first day of the following month

    One way


    Sub NextMonth()
        Range("D1").Value = DateSerial(Year(Date), Month(Date) + 1, 1)
    End Sub
    HTH
    Regards, Jeff

  3. #3
    Registered User
    Join Date
    01-08-2010
    Location
    Sussex County, Delaware
    MS-Off Ver
    Excel 2013
    Posts
    40

    Re: syntax to add the first day of the following month

    Excellent. It fit in PERFECTLY!

  4. #4
    Forum Moderator jeffreybrown's Avatar
    Join Date
    02-19-2009
    Location
    Cibolo, TX
    MS-Off Ver
    Office 365
    Posts
    10,327

    Re: syntax to add the first day of the following month

    Glad to hear it worked out for you and thanks for the feedback

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

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