Guest_imported
New member
- Jan 1, 1970
- 0
What is the function to list a date from today and 7 days ahead in a combo box? How would I go about that?
Any help is appreciated.
Any help is appreciated.
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Private Sub Form_Load()
Me.Combo2.RowSourceType = "value list"
Me.Combo2.RowSource = Date & ";" & Date + 1 & ";" & Date + 2 & ";" & Date + 3 & ";" & Date + 4 & ";" & Date + 5 _
& ";" & Date + 6 & ";" & Date + 7
End Sub
format(date,"dddd") & ";" & format(date+1,"dddd")