Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 1
Default Multi-select from a dropdown list

I have a dropdown list but wish to select more than one item from it - is
this possible?
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 35,218
Default Multi-select from a dropdown list

Not really.

Could you replace it with a listbox -- and allow multiple selections?

PaulaG wrote:

I have a dropdown list but wish to select more than one item from it - is
this possible?


--

Dave Peterson
  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 376
Default Multi-select from a dropdown list

Hi Paula

Only with code

This code (not written by me) will allow you to make multiple selections
from a data validation cell, and will insert a comma between each
selected value

Private Sub Worksheet_Change(ByVal Target As Range)
Dim rngDV As Range
Dim oldVal As String, newVal As String
Dim tr As Long
tr = Target.Row
If Target.Count 1 Then GoTo exitHandler

On Error Resume Next
Set rngDV = Cells.SpecialCells(xlCellTypeAllValidation)
On Error GoTo exitHandler

If rngDV Is Nothing Then GoTo exitHandler

If Intersect(Target, rngDV) Is Nothing Then
'do nothing
Else
Application.EnableEvents = False
newVal = Target.Value
Application.Undo
oldVal = Target.Value
Target.Value = newVal
If oldVal = "" Then
'do nothing
Else
If newVal = "" Then
'do nothing
Else
Target.Value = oldVal _
& ", " & newVal
End If
End If
End If

exitHandler:
Application.EnableEvents = True
End Sub

It is event code so you need to copy it to the sheet where you have your
cells with Data Validation.

Copy code above
Right click on sheet tabView Code
Paste code into white pane that appears
Alt+F11 to return to Excel.

--
Regards
Roger Govier

PaulaG wrote:
I have a dropdown list but wish to select more than one item from it - is
this possible?

  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 22,906
Default Multi-select from a dropdown list

Multiselect from a DV dropdown is possible using VBA.

See Debra Dalgleish's site for a downloadable sample workbook with event
code.

http://www.contextures.on.ca/excelfiles.html#DV0017

Note that you can have the selections in an adjacent cell or in the same
cell.


Gord Dibben MS Excel MVP

On Wed, 7 Apr 2010 05:34:01 -0700, PaulaG
wrote:

I have a dropdown list but wish to select more than one item from it - is
this possible?


  #5   Report Post  
Posted to microsoft.public.excel.misc
JB JB is offline
external usenet poster
 
Posts: 115
Default Multi-select from a dropdown list


http://boisgontierjacques.free.fr/fi...Successifs.xls

JB
http://boisgontierjacques.free.fr/

On 7 avr, 15:00, Dave Peterson wrote:
Not really.

Could you replace it with a listbox -- and allow multiple selections?

PaulaG wrote:

I have a dropdown list but wish to select more than one item from it - is
this possible?


--

Dave Peterson




  #6   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 35,218
Default Multi-select from a dropdown list

I don't open unsolicited workbooks.



JB wrote:

http://boisgontierjacques.free.fr/fi...Successifs.xls

JB
http://boisgontierjacques.free.fr/

On 7 avr, 15:00, Dave Peterson wrote:
Not really.

Could you replace it with a listbox -- and allow multiple selections?

PaulaG wrote:

I have a dropdown list but wish to select more than one item from it - is
this possible?


--

Dave Peterson


--

Dave Peterson
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
Multi Select from Drop List PatriciaT Excel Discussion (Misc queries) 2 September 8th 09 06:33 PM
List Box - Multi Select Issue Joe Wildman[_2_] Excel Worksheet Functions 2 February 6th 09 12:00 AM
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


All times are GMT +1. The time now is 06:55 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"