+ Reply to Thread
Results 1 to 8 of 8

generate all sundays for the year

Hybrid View

  1. #1
    Valued Forum Contributor
    Join Date
    12-01-2011
    Location
    Philippines
    MS-Off Ver
    Excel 2021
    Posts
    979

    generate all sundays for the year

    hi,

    how do i generate all sundays for the year by just typing the year on A1
    as i press enter it will generate all the sundays of the year starting on A3
    with a date format of ddd-mmm-dd-yyyy

    Ex: typed 2017 on A1
    after pressing enter

    A3 would be Sun-Jan-1-2017
    A4 would be Sun-Jan-8-2017
    A5 would be Sun-Jan-15-2017
    and so on

  2. #2
    Forum Expert bebo021999's Avatar
    Join Date
    07-22-2011
    Location
    Vietnam
    MS-Off Ver
    Excel 2016
    Posts
    9,650

    Re: generate all sundays for the year

    In A3:
    =DATE(A1,1,1)+CHOOSE(WEEKDAY(DATE(A1,1,1)),0,6,5,4,3,2,1)
    A4 then copy down:
    =A3+7

    Format as you like in format cell/custom
    Quang PT

  3. #3
    Valued Forum Contributor
    Join Date
    12-22-2015
    Location
    HK
    MS-Off Ver
    2010
    Posts
    532

    Re: generate all sundays for the year

    Try this:
    Private Sub Worksheet_Change(ByVal Target As Range)
    If Target.Address = "$A$1" And IsNumeric(Target.Value) Then
        Dim x(), d&, i%, j%, n%
        Application.EnableEvents = 0
        i = [a1].Value
        d = Format(DateSerial(i, 1, 1), 0)
        j = Format(DateSerial(i + 1, 1, 1), 0) - d
        ReDim x(1 To Int(j / 7) + 1, 1 To 1)
        For i = 1 To j
            If d Mod 7 = 1 Then
                n = n + 1
                x(n, 1) = d
            End If
            d = d + 1
        Next
        [a3:a100].Clear
        [a3].Resize(n, 1).NumberFormatLocal = "ddd-mmm-dd-yyyy"
        [a3].Resize(n, 1) = x
        Application.EnableEvents = 1
        End If
    End Sub
    hth
    ikboy

  4. #4
    Forum Contributor HaroonSid's Avatar
    Join Date
    02-28-2014
    Location
    india
    MS-Off Ver
    Excel 2013
    Posts
    2,095

    Re: generate all sundays for the year

    hi, ikboy
    if any one need all monday
    Use Code-Tags for showing your code :
    Please mark your question Solved if there has been offered a solution that works fine for you
    If You like solutions provided by anyone, feel free to add reputation using STAR *

  5. #5
    Forum Expert bebo021999's Avatar
    Join Date
    07-22-2011
    Location
    Vietnam
    MS-Off Ver
    Excel 2016
    Posts
    9,650

    Re: generate all sundays for the year

    Quote Originally Posted by HaroonSid View Post
    hi, ikboy
    if any one need all monday
    For reference
    http://www.excelforum.com/showthread.php?t=1172898

  6. #6
    Valued Forum Contributor
    Join Date
    12-22-2015
    Location
    HK
    MS-Off Ver
    2010
    Posts
    532

    Re: generate all sundays for the year

    @haroonsid,
    Private Sub Worksheet_Change(ByVal Target As Range)
    If Target.Address = "$A$1" And IsNumeric(Target.Value) Then
        Dim x(), d&, i%, j%, n%
        Application.EnableEvents = 0
        i = [a1].Value
        d = Format(DateSerial(i, 1, 1), 0)
        j = Format(DateSerial(i + 1, 1, 1), 0) - d
        ReDim x(1 To Int(j / 7) + 1, 1 To 1)
        For i = 1 To j
            If d Mod 7 = 2 Then
                n = n + 1
                x(n, 1) = d
            End If
            d = d + 1
        Next
        [a3:a100].Clear
        [a3].Resize(n, 1).NumberFormatLocal = "ddd-mmm-dd-yyyy"
        [a3].Resize(n, 1) = x
        Application.EnableEvents = 1
        End If
    End Sub
    hth,
    ikboy

  7. #7
    Valued Forum Contributor
    Join Date
    12-01-2011
    Location
    Philippines
    MS-Off Ver
    Excel 2021
    Posts
    979

    Re: generate all sundays for the year

    @bebo021999 i see, thank you!

    @ikboy thanks for the macro code also
    Last edited by k1dr0ck; 02-07-2017 at 04:58 AM.

  8. #8
    Forum Contributor HaroonSid's Avatar
    Join Date
    02-28-2014
    Location
    india
    MS-Off Ver
    Excel 2013
    Posts
    2,095

    Re: generate all sundays for the year

    very helpful @ikboy

    thanx alot

+ 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. generate missing years of year range adjacent cell
    By jaamba123 in forum Excel General
    Replies: 1
    Last Post: 12-11-2016, 05:38 PM
  2. Generate all payments of a year question
    By Ricksterr94 in forum Excel General
    Replies: 4
    Last Post: 07-25-2014, 04:10 PM
  3. Replies: 6
    Last Post: 10-24-2013, 03:28 PM
  4. Replies: 3
    Last Post: 09-04-2013, 10:49 AM
  5. Replies: 15
    Last Post: 11-28-2012, 03:23 PM
  6. [SOLVED] Generate List of Item By Year and Sum Total
    By Jrub in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 10-17-2012, 07:15 PM
  7. [SOLVED] # of Sundays in a year
    By lsmft in forum Excel General
    Replies: 18
    Last Post: 04-27-2006, 09:30 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