View Single Post
  #6   Report Post  
Posted to microsoft.public.excel.programming
Benz Benz is offline
external usenet poster
 
Posts: 63
Default Re-Post: Sorting Listbox Source

What I mean is how would I go about changing the order of the data-list in a
userform? or change the rowsource? I need the 3 things to work together. If
this isint making sesne I can e-mail my workbook. I've been trying to get
this all morning lol.

Thank you for your help :)

"Tom Ogilvy" wrote:

as long as the data is on a sheet in the same workbook as the userform, it
doesn't make any difference in terms of the abililty of the userform to use
that data. That sheet can be hidden or visible.

--
regards,
Tom Ogilvy




"Susan" wrote:

sorry..............
i think THEY'RE unsure about where THEY can put the data............
:)
susan

On Feb 20, 12:53 pm, "Susan" wrote:
i think she's unsure about where she can put the range of data
populating the combobox.
i believe you can use a hidden sheet, which will give you access to
changing it, etc., but keep it hidden (obviously!) from your users
except thru their use of the userform.
hope this helps!
susan

On Feb 20, 12:43 pm, Tom Ogilvy
wrote:



What does that mean?

Private Sub CommandButton7_Click()

If ComboBox6.Text = "Selection of Items" Then
Listbox61.Rowsource = ""
set rng = worksheets("BCK").Range("Selection_Of_Items")
rng.sort key1:=rng(1), order1:=xlAscending
ListBox61.RowSource = "BCK!Selection_of_Items"
List61.ListIndex = List61.ListIndex - 1
End If

End sub

--
Regards,
Tom Ogilvy

End Sub

"Benz" wrote:
Sorry this is a re-post because im still looking for some type of anser or
direction.

My question and response to Tom's Help is, can I move the data in the
worksheet while still giving the user the ease of use of the userform? or can
you point me in an easier direction?

Thank you!!

"Tom Ogilvy" wrote:

since your using rowsource to fill your listbox, you will have to move the
data on the worksheet.

--
Regards,
Tom Ogilvy

"Benz" wrote:

Hello,

I'm not the greatest at VBA so hopefully this makes sense. I have a user
form where the user selects a from combo box 6 different text example "
Selection of Items" then in ListBox 61 comes specifiic data in pulled from a
defined area in the work book. Im trying to figure out how to do 2 things.

1. create a command button ( I tried to create one using the code below)
that will move a selected item in ListBox61 up or down.
2. Create a command button that will move the selected item to the top of
the list.

I'm having trouble doing this because everything I try then prevents the
information to be put into Listbox 61 depending on what the user selects in
combo box 6.

Any help would be appreciated.

Thank you.

Private Sub CommandButton7_Click()

If ComboBox6.Text = "Selection of Items" Then
ListBox61.RowSource = "BCK!Selection_of_Items"
List61.ListIndex = List61.ListIndex - 1
End If
End Sub- Hide quoted text -

- Show quoted text -- Hide quoted text -

- Show quoted text -