ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   Months and Dates (https://www.excelbanter.com/excel-programming/295421-months-dates.html)

adn4n

Months and Dates
 
Hi, im looking to enter the Months of the year into a combo box, whic
is what i have done .....but can any one please help me on how to ge
the dates according to that month to show up underneath, so that i ca
have a timesheet according to the relevant month.. e.g Jan, 31 days, i
list of dates... etc etc Thankyou

--
Message posted from http://www.ExcelForum.com


Frank Kabel

Months and Dates
 
Hi
see your post in Excel.misc

--
Regards
Frank Kabel
Frankfurt, Germany


Hi, im looking to enter the Months of the year into a combo box,

which
is what i have done .....but can any one please help me on how to get
the dates according to that month to show up underneath, so that i

can
have a timesheet according to the relevant month.. e.g Jan, 31 days,
in list of dates... etc etc Thankyou.


---
Message posted from http://www.ExcelForum.com/



Bob Phillips[_6_]

Months and Dates
 
Here's some code

Private Sub ComboBox1_Change()
Dim i As Long
Dim dteCombo As Date

Range("A1:A31").ClearContents
For i = 1 To 31
dteCombo = DateSerial(Year(Date), ComboBox1.ListIndex + 1, i)
If Month(dteCombo) = ComboBox1.ListIndex + 1 Then
Cells(i, "A").Value = dteCombo
Else
Exit For
End If
Next i
End Sub

--

HTH

Bob Phillips
... looking out across Poole Harbour to the Purbecks
(remove nothere from the email address if mailing direct)

"adn4n " wrote in message
...
Hi, im looking to enter the Months of the year into a combo box, which
is what i have done .....but can any one please help me on how to get
the dates according to that month to show up underneath, so that i can
have a timesheet according to the relevant month.. e.g Jan, 31 days, in
list of dates... etc etc Thankyou.


---
Message posted from http://www.ExcelForum.com/





All times are GMT +1. The time now is 08:24 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
ExcelBanter.com