How to autofocus on the last row on listbox

Excel Facts

Which came first: VisiCalc or Lotus 1-2-3?
Dan Bricklin and Bob Frankston debuted VisiCalc in 1979 as a Visible Calculator. Lotus 1-2-3 debuted in the early 1980's, from Mitch Kapor.
It's working normal but it displays just the 10 first rows i don't know why?
here is my code:
Code:
Private Sub CommandButton15_Click()If Me.ComboBox6.Value = "CHIFFA VRAC" Then
Dim KK As Integer
KK = WorksheetFunction.CountA(Worksheets("STOCK_LUBRIFIANT").Range("B:B"))
ListBox6.RowSource = "STOCK_LUBRIFIANT!b8:f" & KK
ListBox6.ColumnCount = 5
ListBox6.ColumnWidths = "80;100;100;140;100"


With ListBox6
.ListIndex = .ListCount - 1
End With
End If
End sub
 
Upvote 0
See red + 7 below:-
Code:
KK = WorksheetFunction.CountA(Worksheets("STOCK_LUBRIFIANT").Range("B:B"))
ListBox1.RowSource = "STOCK_LUBRIFIANT!b8:f" & KK [B][COLOR=#FF0000]+ 7[/COLOR][/B]
 
Upvote 0

Forum statistics

Threads
1,213,562
Messages
6,114,326
Members
448,564
Latest member
ED38

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