+ Reply to Thread
Results 1 to 3 of 3

populate a listbox with dates

Hybrid View

  1. #1
    Registered User
    Join Date
    11-28-2007
    Posts
    18

    populate a listbox with dates

    Hi,

    Does anybody know of a way to populate a list box with dates (52 week commencing dates) using VBA coding rather than populating from a list on a worksheet.

    Thanks in advance
    Mark

  2. #2
    Forum Expert royUK's Avatar
    Join Date
    11-18-2003
    Location
    Derbyshire,UK
    MS-Off Ver
    Xp; 2007; 2010
    Posts
    26,200
    Here's one way

    Private Sub UserForm_Initialize()
        Dim w      As Integer
        Dim dte    As Date
    
        dte = CDate(39454)    '07/01/08
        With Me.ListBox1
            .AddItem Format(dte, "dd/mm/yyyy")
            For w = 2 To 52
                dte = dte + 7
                .AddItem Format(dte, "dd/mm/yyyy")
            Next w
        End With
    End Sub
    Hope that helps.

    RoyUK
    --------
    For Excel Tips & Solutions, free examples and tutorials why not check out my web site

    Free DataBaseForm example

  3. #3
    Registered User
    Join Date
    11-28-2007
    Posts
    18
    Hi Roy,

    Thanks for your reply. Works a treat!

    Cheers

+ 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