Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Is there a line i can ADD to the below code to select the LAST value(not empty) in the Range ?
Private Sub UserForm_Initialize() Dim myCell As Range Dim myRng As Range Set myRng = Worksheets("RTW Plan").Range("N80:N99") With ListBox1 For Each myCell In myRng.cells If Trim(myCell.Value) = "" Then 'skip it Else .AddItem myCell.Value End If Next myCell End With End Sub Corey.... |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Select a ListBox value with code | Excel Programming | |||
MultiColumn ListBox, linked to a range - select cells | Excel Programming | |||
Multi-select listbox help! | Excel Programming | |||
multi select listbox | Excel Programming | |||
Select from table and listbox | Excel Programming |