How to autofocus on the last row on listbox

Excel Facts

Did you know Excel offers Filter by Selection?
Add the AutoFilter icon to the Quick Access Toolbar. Select a cell containing Apple, click AutoFilter, and you will get all rows with Apple
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,215,740
Messages
6,126,583
Members
449,319
Latest member
iaincmac

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