+ Reply to Thread
Results 1 to 4 of 4

calculating number of weeks in a month ( jan -Dec 13) starting every monday+display

Hybrid View

KK1234 calculating number of weeks... 05-08-2013, 05:33 AM
MickG Re: calculating number of... 05-08-2013, 06:29 AM
KK1234 Re: calculating number of... 05-08-2013, 09:41 AM
MickG Re: calculating number of... 05-08-2013, 10:01 AM
  1. #1
    Forum Contributor
    Join Date
    02-19-2013
    Location
    UK
    MS-Off Ver
    Excel 2019
    Posts
    677

    calculating number of weeks in a month ( jan -Dec 13) starting every monday+display

    Hi ,
    I have spent days to figure out how do I calculate the week numbers. Well this is possible .
    But is there any way, where it does the following:
    1. Calculates current month weeks ( week starting on Monday)
    2. Displays them in a column with their numbers and Month
    3. Highlights the current week

    Is it possible?

    Regards

  2. #2
    Forum Expert MickG's Avatar
    Join Date
    11-23-2007
    Location
    Banbury,Oxfordshire
    Posts
    2,650

    Re: calculating number of weeks in a month ( jan -Dec 13) starting every monday+display

    Place the Year (i.e. 2013 ) in "A1", Run code, Month names shown in column "A", "Monday" Dates shown in column "B".
    If this is not exactly what you want, please show an example of your expected reaults.
    Sub MG08May22
    Dim LpYr        As Integer
    Dim Dys         As Integer
    Dim Dt          As Date
    Dim n           As Integer
    Dim nDt         As Date
    Dim Ray()
    LpYr = Month(DateSerial(2008, 2, 29))
        Dys = IIf(LpYr = 2, 366, 365)
            Dt = DateSerial([a1] - 1, 12, 31)
        
        For n = 1 To Dys
            nDt = DateAdd("d", n, Dt)
            If WeekdayName(Weekday(nDt, vbMonday)) = "Monday" Then
                c = c + 1
                ReDim Preserve Ray(1 To 2, 1 To c)
                Ray(1, c) = MonthName(Month(nDt))
                Ray(2, c) = nDt
            End If
        Next n
    Range("A2:B2") = Array("Month", "Monday Dates")
    Range("A3").Resize(c, 2) = Application.Transpose(Ray)
    End Sub
    Regards Mick

  3. #3
    Forum Contributor
    Join Date
    02-19-2013
    Location
    UK
    MS-Off Ver
    Excel 2019
    Posts
    677

    Re: calculating number of weeks in a month ( jan -Dec 13) starting every monday+display

    Hi,
    This works fine . This is what I wanted.
    Thanks again for your help
    Regards

  4. #4
    Forum Expert MickG's Avatar
    Join Date
    11-23-2007
    Location
    Banbury,Oxfordshire
    Posts
    2,650

    Re: calculating number of weeks in a month ( jan -Dec 13) starting every monday+display

    Your welcome
    Regrds Mick

+ 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