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
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
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
Hi Roy,
Thanks for your reply. Works a treat!
Cheers
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks