Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1
Default Creating a strange list :S

I was given a strange query from one of my users today in Excel, and I must
admit I found myself clueless as to how to help her. Basically she wants to
create a drop down list (easy to do), when she makes a selection on that list
she wants it to appear in a different cell (not so easy), on top of that,
once she has made that selection, she then wants to click on the same list
again and make a different selection and have that appear on the same cell as
the before, but with a comma seperating the two selections. Is there any way
to do this?
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1,081
Default Creating a strange list :S

You'd have to use a Worksheet_Change event in VBA, if that's something you
want to delve into


"Phil(tech)" wrote:

I was given a strange query from one of my users today in Excel, and I must
admit I found myself clueless as to how to help her. Basically she wants to
create a drop down list (easy to do), when she makes a selection on that list
she wants it to appear in a different cell (not so easy), on top of that,
once she has made that selection, she then wants to click on the same list
again and make a different selection and have that appear on the same cell as
the before, but with a comma seperating the two selections. Is there any way
to do this?

  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 22,906
Default Creating a strange list :S

Phil

See Debra Dalgleish's site for a sample workbook that does just this.

Allows multiple selections to be placed in one cell.

DV0017 - Select Multiple Items from Dropdown List-- Select multiple items from a
dropdown list; an event macro stores selections in adjacent cell, or in same
cell. DataValMultiSelect.zip 18kb updated 22-Feb-07

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


Gord Dibben MS Excel MVP

On Wed, 28 Feb 2007 06:13:30 -0800, Phil(tech)
wrote:

I was given a strange query from one of my users today in Excel, and I must
admit I found myself clueless as to how to help her. Basically she wants to
create a drop down list (easy to do), when she makes a selection on that list
she wants it to appear in a different cell (not so easy), on top of that,
once she has made that selection, she then wants to click on the same list
again and make a different selection and have that appear on the same cell as
the before, but with a comma seperating the two selections. Is there any way
to do this?


  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1
Default Creating a strange list :S

Hi,

Thank you both for the help. Gord, that was exactly what I was looking for!
Can you help me just a little more though please? I'm no VBA expert. Where
can I find the code that gave the list of values (One, Two, Three) so I can
customize these to something more relevent?.

Thanks again,

Phil(Tech)

"Gord Dibben" wrote:

Phil

See Debra Dalgleish's site for a sample workbook that does just this.

Allows multiple selections to be placed in one cell.

DV0017 - Select Multiple Items from Dropdown List-- Select multiple items from a
dropdown list; an event macro stores selections in adjacent cell, or in same
cell. DataValMultiSelect.zip 18kb updated 22-Feb-07

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


Gord Dibben MS Excel MVP

On Wed, 28 Feb 2007 06:13:30 -0800, Phil(tech)
wrote:

I was given a strange query from one of my users today in Excel, and I must
admit I found myself clueless as to how to help her. Basically she wants to
create a drop down list (easy to do), when she makes a selection on that list
she wants it to appear in a different cell (not so easy), on top of that,
once she has made that selection, she then wants to click on the same list
again and make a different selection and have that appear on the same cell as
the before, but with a comma seperating the two selections. Is there any way
to do this?



  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 51
Default Creating a strange list :S

Right-click on the worksheet tab and choose "View code."

"Phil (tech)" wrote in message
...
Hi,

Thank you both for the help. Gord, that was exactly what I was looking

for!
Can you help me just a little more though please? I'm no VBA expert.

Where
can I find the code that gave the list of values (One, Two, Three) so I

can
customize these to something more relevent?.

Thanks again,

Phil(Tech)

"Gord Dibben" wrote:

Phil

See Debra Dalgleish's site for a sample workbook that does just this.

Allows multiple selections to be placed in one cell.

DV0017 - Select Multiple Items from Dropdown List-- Select multiple

items from a
dropdown list; an event macro stores selections in adjacent cell, or in

same
cell. DataValMultiSelect.zip 18kb updated 22-Feb-07

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


Gord Dibben MS Excel MVP

On Wed, 28 Feb 2007 06:13:30 -0800, Phil(tech)
wrote:

I was given a strange query from one of my users today in Excel, and I

must
admit I found myself clueless as to how to help her. Basically she

wants to
create a drop down list (easy to do), when she makes a selection on

that list
she wants it to appear in a different cell (not so easy), on top of

that,
once she has made that selection, she then wants to click on the same

list
again and make a different selection and have that appear on the same

cell as
the before, but with a comma seperating the two selections. Is there

any way
to do this?







  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 22,906
Default Creating a strange list :S

Phil

The list of One, Two, Three etc. is hard-typed into the DV Custom List.

You must make your own list and use that list as the range to select from.

You could hard-type into the list dialog box(comma separated) or if list is more
extensive like A1:A20, use that range as the source in the dialog box.

If the list is on another worksheet, create a name for the range and enter
=MyList


Gord

On Thu, 1 Mar 2007 00:26:00 -0800, Phil(tech)
wrote:

Hi,

Thank you both for the help. Gord, that was exactly what I was looking for!
Can you help me just a little more though please? I'm no VBA expert. Where
can I find the code that gave the list of values (One, Two, Three) so I can
customize these to something more relevent?.

Thanks again,

Phil(Tech)

"Gord Dibben" wrote:

Phil

See Debra Dalgleish's site for a sample workbook that does just this.

Allows multiple selections to be placed in one cell.

DV0017 - Select Multiple Items from Dropdown List-- Select multiple items from a
dropdown list; an event macro stores selections in adjacent cell, or in same
cell. DataValMultiSelect.zip 18kb updated 22-Feb-07

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


Gord Dibben MS Excel MVP

On Wed, 28 Feb 2007 06:13:30 -0800, Phil(tech)
wrote:

I was given a strange query from one of my users today in Excel, and I must
admit I found myself clueless as to how to help her. Basically she wants to
create a drop down list (easy to do), when she makes a selection on that list
she wants it to appear in a different cell (not so easy), on top of that,
once she has made that selection, she then wants to click on the same list
again and make a different selection and have that appear on the same cell as
the before, but with a comma seperating the two selections. Is there any way
to do this?




  #7   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 10
Default Creating a strange list :S

Hi,

This is very useful for something I am trying to sort out too, cheers.

Is it possible to select from the drop down and have items appear on a
separate rows as in the demonstration, but to also fill out associated cols.

So if in the List validation it looks at AA1:AA10, and returns the selected
item into column B, could it at the same time return into column C what is
against the selected item in AB1:AB10?

I hope I have explained that clearly enough! - I imagine it would involve
somekind of lookup? - I don't want to have any formulas etc in the C col
until something appears in the B column.

Thanks

Peter

"Phil(tech)" wrote:

I was given a strange query from one of my users today in Excel, and I must
admit I found myself clueless as to how to help her. Basically she wants to
create a drop down list (easy to do), when she makes a selection on that list
she wants it to appear in a different cell (not so easy), on top of that,
once she has made that selection, she then wants to click on the same list
again and make a different selection and have that appear on the same cell as
the before, but with a comma seperating the two selections. Is there any way
to do this?

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
Excel Creating strange files Chad Guiney Setting up and Configuration of Excel 1 February 27th 07 02:31 PM
Creating a Detailed List from a Summary List [email protected] Excel Worksheet Functions 0 September 7th 06 12:36 AM
Creating a List based on your choice from Another List Cristi Excel Discussion (Misc queries) 1 August 14th 06 06:00 PM
Strange error when creating list. Calle Excel Discussion (Misc queries) 7 July 9th 06 01:28 PM
Validation List and VLookup are ackting strange Jasper Excel Worksheet Functions 1 January 24th 05 01:49 PM


All times are GMT +1. The time now is 12:15 PM.

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

About Us

"It's about Microsoft Excel"