How to autofocus on the last row on listbox

Excel Facts

Is there a shortcut key for strikethrough?
Ctrl+S is used for Save. Ctrl+5 is used for Strikethrough. Why Ctrl+5? When you use hashmarks to count |||| is 4, strike through to mean 5.
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,224,824
Messages
6,181,186
Members
453,020
Latest member
Mohamed Magdi Tawfiq Emam

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