Another quirky Date question in VBA - Find Beg&End Dates of next Month

jfarc

Active Member
Joined
Mar 30, 2007
Messages
316
I will have a Date that is read from a file in VBA. What I need to place in (2) new variables will be the following month's beginning date and ending date.

The Variables in use:
'aDate' = Known Date (this can any day within a given month)
'bDate' = Calculated 1st date of the following month.
'cDate' = Calculated Last date of the following month.

Example:
Code:
Given:
'aDate' = 09/21/11

Results:
'bDate' = 10/01/11
'cDate' = 10/31/11

What I've come up with is goofy and I know there's got to be a better way. I need the solution to be in VBA code rather than using Excel formulas. Thanks!
 

Excel Facts

Create a Pivot Table on a Map
If your data has zip codes, postal codes, or city names, select the data and use Insert, 3D Map. (Found to right of chart icons).
Try the code below
msgbox are used to show you the results and used for testing.

Code:
Sub Test()
    Dim aDate As Date
    Dim bDate As Date
    Dim cDate1 As Date
    aDate = Format(Date, "dd/mm/yyyy") 'Date function returns the current system date
    MsgBox ("Today's date := " & aDate)
    bDate = DateSerial(Year(aDate), 1 + Month(aDate), 1)
    MsgBox ("1st date of the following month := " & bDate)
    cDate1 = Application.EoMonth(bDate, 0)
    MsgBox ("Last date of the following month := " & cDate1)
End Sub

Biz
 
Upvote 0

Forum statistics

Threads
1,224,600
Messages
6,179,836
Members
452,947
Latest member
Gerry_F

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top