vote up 1 vote down star

I know that Sql Server has some handy built-in quarterly stuff, but what about the .Net native DateTime object? What is the best way to add, subtract, and traverse quarters?

Is it a bad thing™ to use the VB-specific DateAdd() function? e.g.:

Dim nextQuarter As DateTime = DateAdd(DateInterval.Quarter, 1, DateTime.Now)

Edit: Expanding @bslorence's function:

Public Shared Function AddQuarters(ByVal originalDate As DateTime, ByVal quarters As Integer) As Datetime
    Return originalDate.AddMonths(quarters * 3)
End Function

Expanding @Matt's function:

Public Shared Function GetQuarter(ByVal fromDate As DateTime) As Integer
    Return ((fromDate.Month - 1) \ 3) + 1
End Function

Edit: here's a couple more functions that were handy:

Public Shared Function GetFirstDayOfQuarter(ByVal originalDate As DateTime) As DateTime
    Return AddQuarters(New DateTime(originalDate.Year, 1, 1), GetQuarter(originalDate) - 1)
End Function

Public Shared Function GetLastDayOfQuarter(ByVal originalDate As DateTime) As DateTime
    Return AddQuarters(New DateTime(originalDate.Year, 1, 1), GetQuarter(originalDate)).AddDays(-1)
End Function
flag

3 Answers

vote up 3 vote down check

I know you can calculate the quarter of a date by:

Dim quarter As Integer = (someDate.Month - 1) \ 3 + 1

If you're using Visual Studio 2008, you could try bolting additional functionality on to the DateTime class by taking a look at Extension Methods.

link|flag
I'd love to use extension methods! Unfortunately, this is for VS 2005/.Net 2.0. Thanks for the formula though, that'll come in handy. – travis Sep 19 '08 at 15:36
vote up 1 vote down

One thing to remeber, not all companies end thier quarters on the last day of a month.

link|flag
good point, I'll have to check and see if I have to match on the nearest business day (what a pain that would be!) – travis Sep 19 '08 at 15:50
vote up 2 vote down

How about this:

Dim nextQuarter As DateTime = DateTime.Now.AddMonths(3);
link|flag
That is functionally equivalent to DateAdd(DateInterval.Quarter, 1, DateTime.Now), as is cleaner than using VB function. – Mark Brackett Sep 19 '08 at 15:41

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.