finding last row issue

RedOctoberKnight

Board Regular
Joined
Nov 16, 2015
Messages
150
Office Version
  1. 2016
Platform
  1. Windows
Good Morning,

I have the following bit of code that I'm using to fill some combo boxes in a Userform.

VBA Code:
Dim LastRow As Long
LastRow = Cells(Rows.Count, "M").End(xlUp).row

  ComboBox1.List = Sheets("SETTINGS").Range("M3:M" & LastRow).Value
  ComboBox2.List = Sheets("SETTINGS").Range("M3:M" & LastRow).Value
  ComboBox3.List = Sheets("SETTINGS").Range("M3:M" & LastRow).Value
  ComboBox4.List = Sheets("SETTINGS").Range("M3:M" & LastRow).Value
  ComboBox5.List = Sheets("SETTINGS").Range("M3:M" & LastRow).Value
  ComboBox6.List = Sheets("SETTINGS").Range("M3:M" & LastRow).Value
  ComboBox7.List = Sheets("SETTINGS").Range("M3:M" & LastRow).Value
  ComboBox8.List = Sheets("SETTINGS").Range("M3:M" & LastRow).Value
  ComboBox9.List = Sheets("SETTINGS").Range("M3:M" & LastRow).Value

The problem I'm having is it's including a bunch of blank cells in the list. I do have one blank cell at the top of the list but I dont need a bunch at the end.

Any suggestions?

Thanks.
 

Excel Facts

Whats the difference between CONCAT and CONCATENATE?
The newer CONCAT function can reference a range of cells. =CONCATENATE(A1,A2,A3,A4,A5) becomes =CONCAT(A1:A5)
How about
VBA Code:
LastRow = Sheets("SETTINGS").Cells(Rows.Count, "M").End(xlUp).row
 
Upvote 0
Solution
You're welcome & thanks for the feedback.
 
Upvote 0

Forum statistics

Threads
1,215,069
Messages
6,122,954
Members
449,095
Latest member
nmaske

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