Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 30
Default List Box - Multi Select Issue

Hello everyone, I was able to create a List Box per the site below and link
the data to the chart and got it to disply in cell A20 when i click on any
item but I need the Multi Select option to work. So going off the exact
example as it is a test, Simply, what I need is How To the Link cell A20 to
display anything selected in the list box in once cell (note, I did set the
list box propertys to linked cell A20 and can see only 1 item in the list
when set to singel). Can anyone please help?

http://support.microsoft.com/kb/291073
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 30
Default List Box - Multi Select Issue

I just wanted to clarify that the list box i am using is an object like the
combo box, that is what i am working with,

"Joe Wildman" wrote:

Hello everyone, I was able to create a List Box per the site below and link
the data to the chart and got it to disply in cell A20 when i click on any
item but I need the Multi Select option to work. So going off the exact
example as it is a test, Simply, what I need is How To the Link cell A20 to
display anything selected in the list box in once cell (note, I did set the
list box propertys to linked cell A20 and can see only 1 item in the list
when set to singel). Can anyone please help?

http://support.microsoft.com/kb/291073

  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 30
Default List Box - Multi Select Issue

Never mind, i got it

Private Sub ListBox1_Change()

Dim outString As String, i As Long

outString = vbNullString
With ListBox1
For i = 0 To .ListCount - 1
If .Selected(i) Then outString = outString & ", " & .List(i)
Next i
End With
Range("A1").Value = outString

End Sub

"Joe Wildman" wrote:

I just wanted to clarify that the list box i am using is an object like the
combo box, that is what i am working with,

"Joe Wildman" wrote:

Hello everyone, I was able to create a List Box per the site below and link
the data to the chart and got it to disply in cell A20 when i click on any
item but I need the Multi Select option to work. So going off the exact
example as it is a test, Simply, what I need is How To the Link cell A20 to
display anything selected in the list box in once cell (note, I did set the
list box propertys to linked cell A20 and can see only 1 item in the list
when set to singel). Can anyone please help?

http://support.microsoft.com/kb/291073

Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Is it possible to select a multi value from a drop down box Carrie Excel Discussion (Misc queries) 12 June 10th 09 08:10 PM
Multi-select from drop down list in Excel 97 arpgis Excel Discussion (Misc queries) 1 April 11th 07 10:46 PM
how do I select multi values from a list Tommy Excel Discussion (Misc queries) 1 July 12th 06 09:38 AM
List Box Multi Select Option ann_nyc Excel Worksheet Functions 0 October 11th 05 05:56 PM
excel- multi level select from a list in excel? hide Setting up and Configuration of Excel 1 May 20th 05 09:01 PM


All times are GMT +1. The time now is 10:56 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"