Populate number in combo box

Av8tordude

Well-known Member
Joined
Oct 13, 2007
Messages
1,074
Office Version
  1. 2019
Platform
  1. Windows
I have this code that populates ten years before and 10 years after the current year, however I have various dates starting from column D15 that I would like to only show the range of years in the column. For example, If the first date is 03/02/2013 and the last date is 12/01/2018, I would like to only show the years 2013 - 2018. Can someone assist with my request.

Code:
For i = -10 To 10    
    If i = 1 Then cbYr.AddItem Format((Date), "yyyy") _
        Else: cbYr.AddItem Format((DateAdd("yyyy", (i - 1), Date)), "yyyy")
Next

Thank you kindly
 
Last edited:

Excel Facts

When did Power Query debut in Excel?
Although it was an add-in in Excel 2010 & Excel 2013, Power Query became a part of Excel in 2016, in Data, Get & Transform Data.
Maybe this:

Code:
Set Rng = Range("D15", Cells(Rows.Count, "D").End(xlUp))

a = Year(Application.WorksheetFunction.Min(Rng))
b = Year(Application.WorksheetFunction.Max(Rng))

For i = a To b
ComboBox1.AddItem i
Next
 
Upvote 0
Works perfect!!! Is there a way for the combo box to show the current year. I've tried the code below, but it using the year that happens to be in that index number.

Code:
cbYr.ListIndex = 1

Thank you again for your help!
 
Upvote 0
Works perfect!!! Is there a way for the combo box to show the current year. I've tried the code below, but it using the year that happens to be in that index number.

Thank you again for your help!


Try this:
(Note: in my first code you need to add: ComboBox1.Clear 'needs to be cleared first)

Code:
Set Rng = Range("D15", Cells(Rows.Count, "D").End(xlUp))

a = Year(Application.WorksheetFunction.Min(Rng))
b = Year(Application.WorksheetFunction.Max(Rng))

ComboBox1.Clear 'needs to be cleared first
For i = a To b
ComboBox1.AddItem i
Next

For i = 0 To ComboBox1.ListCount - 1
    If ComboBox1.List(i) = CStr(Year(Date)) Then
        ComboBox1.ListIndex = i
        Exit For
    End If
Next i
 
Upvote 0
Thank you Akuini for your assistance. Code works great!
I think you can do what you want with just these two lines of code...
Code:
[table="width: 500"]
[tr]
	[td]  ComboBox1.List = Evaluate("ROW(" & Year(Application.Min([D:D])) & ":" & Year(Application.Max([D:D])) & ")")
  ComboBox1.Value = Year(Now)
End Sub[/td]
[/tr]
[/table]
 
Last edited:
Upvote 0
I think you can do what you want with just these two lines of code...
Code:
[table="width: 500"]
[tr]
	[td]  ComboBox1.List = Evaluate("ROW(" & Year(Application.Min([D:D])) & ":" & Year(Application.Max([D:D])) & ")")
  ComboBox1.Value = Year(Now)
End Sub[/td]
[/tr]
[/table]
Actually, we can streamline that code somewhat...
Code:
Private Sub UserForm_Click()
  ComboBox1.List = Evaluate("ROW(" & [YEAR(MIN(D:D))] & ":" & [YEAR(MAX(D:D))] & ")")
  ComboBox1.Value = Year(Now)
End Sub
 
Upvote 0
Hi Rick...Thank you. How can I have the code to start from D15 until the last row?
 
Upvote 0
Hi Rick...Thank you. How can I have the code to start from D15 until the last row?
Change the red numbers to a row number that is larger than the maximum row you would ever expect to have data in...
Code:
[table="width: 500"]
[tr]
	[td]  ComboBox1.List = Evaluate("ROW(" & [YEAR(MIN(D15:D[B][COLOR="#FF0000"]999[/COLOR][/B]))] & ":" & [YEAR(MAX(D15:D[B][COLOR="#FF0000"]999[/COLOR][/B]))] & ")")
  ComboBox1.Value = Year(Now)[/td]
[/tr]
[/table]
 
Upvote 0

Forum statistics

Threads
1,214,535
Messages
6,120,090
Members
448,944
Latest member
sharmarick

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top