Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.newusers
external usenet poster
 
Posts: 3
Default extended List box

Hi,
I need to be able to choose from a List of numbers 30.00 through 32.00. Such
as 30.00,30.01,30.02......
I tried a List box but it only holds 40 selections. Is there such a thing as
an "extended" List box that will hold 200 digits? This is only for my
personal use so anything will do.
Thank you.
Ken Williams


  #2   Report Post  
Posted to microsoft.public.excel.newusers
external usenet poster
 
Posts: 3,355
Default extended List box

Create a list with the numbers you want to select from on a worksheet.
Give this list a named range. I think it needs to be a workbook named
range, rather than a worksheet named range.
When you do the data validation, enter = LIST (or whatever you've named your
range).

Let me know if you need any more assistance.

"Ken Williams" wrote:

Hi,
I need to be able to choose from a List of numbers 30.00 through 32.00. Such
as 30.00,30.01,30.02......
I tried a List box but it only holds 40 selections. Is there such a thing as
an "extended" List box that will hold 200 digits? This is only for my
personal use so anything will do.
Thank you.
Ken Williams



  #3   Report Post  
Posted to microsoft.public.excel.newusers
Max Max is offline
external usenet poster
 
Posts: 9,221
Default extended List box

Using a forms list box (in xl 2003), I wasn't able to replicate your problem
about the 40 selections restriction. I filled the 201 numbers: 30.00, 30.01,
.... 32.00 in say C1:C201. Then drew a list box, right-click to format
control & set the input range to: $C$1:$C$201, cell link: D1 (say). I was
able to get all 201 selections showing & working in the list box. Clicking a
selection in the list box produced the number in D1 corresponding to the
position of the selection in the input range. To extract the actual number
selected into a cell, I placed in say, E1:
=IF(D1="","",INDEX($C$1:$C$201,D1))
--
Max
Singapore
http://savefile.com/projects/236895
xdemechanik
---
"Ken Williams" wrote in message
...
Hi,
I need to be able to choose from a List of numbers 30.00 through 32.00.
Such as 30.00,30.01,30.02......
I tried a List box but it only holds 40 selections. Is there such a thing
as an "extended" List box that will hold 200 digits? This is only for my
personal use so anything will do.
Thank you.
Ken Williams



  #4   Report Post  
Posted to microsoft.public.excel.newusers
external usenet poster
 
Posts: 3
Default extended List box

Thank you Max. I'll try this route.
Ken

"Max" wrote in message
...
Using a forms list box (in xl 2003), I wasn't able to replicate your
problem about the 40 selections restriction. I filled the 201 numbers:
30.00, 30.01, ... 32.00 in say C1:C201. Then drew a list box, right-click
to format control & set the input range to: $C$1:$C$201, cell link: D1
(say). I was able to get all 201 selections showing & working in the list
box. Clicking a selection in the list box produced the number in D1
corresponding to the position of the selection in the input range. To
extract the actual number selected into a cell, I placed in say, E1:
=IF(D1="","",INDEX($C$1:$C$201,D1))
--
Max
Singapore
http://savefile.com/projects/236895
xdemechanik
---
"Ken Williams" wrote in message
...
Hi,
I need to be able to choose from a List of numbers 30.00 through 32.00.
Such as 30.00,30.01,30.02......
I tried a List box but it only holds 40 selections. Is there such a thing
as an "extended" List box that will hold 200 digits? This is only for my
personal use so anything will do.
Thank you.
Ken Williams





  #5   Report Post  
Posted to microsoft.public.excel.newusers
Max Max is offline
external usenet poster
 
Posts: 9,221
Default extended List box

Using a forms list box (in xl 2003), I wasn't able to replicate your
problem about the 40 selections restriction.


Likewise for a control toolbox's list box,
I could get all 201 selections to show/work using the property settings:

LinkedCell: D1
ListFillRange: C1:C201

The value selected in the listbox would appear direct in the linked cell D1
--
Max
Singapore
http://savefile.com/projects/236895
xdemechanik
---




  #6   Report Post  
Posted to microsoft.public.excel.newusers
Max Max is offline
external usenet poster
 
Posts: 9,221
Default extended List box

You're welcome, Ken
--
Max
Singapore
http://savefile.com/projects/236895
xdemechanik
---
"Ken Williams" wrote in message
...
Thank you Max. I'll try this route.
Ken



  #7   Report Post  
Posted to microsoft.public.excel.newusers
external usenet poster
 
Posts: 3
Default extended List box

Hi Max,
Guess I'm just not getting this. I am brand new to Excel. The only way I
know to try this is to Data/Valadition/Select LIST then fill the numbers
into the Source window. I am only permitted to enter 40 numbers into the
box. I can't figure out how to use the Forms to create a list box.
Thanks,
Ken


"Max" wrote in message
...
Using a forms list box (in xl 2003), I wasn't able to replicate your
problem about the 40 selections restriction.


Likewise for a control toolbox's list box,
I could get all 201 selections to show/work using the property settings:

LinkedCell: D1
ListFillRange: C1:C201

The value selected in the listbox would appear direct in the linked cell
D1
--
Max
Singapore
http://savefile.com/projects/236895
xdemechanik
---



  #8   Report Post  
Posted to microsoft.public.excel.newusers
Max Max is offline
external usenet poster
 
Posts: 9,221
Default extended List box

Ken,

It certainly sounds like you're trying to use data validation droplist, not
a "real" list box drawn from either the Forms toolbar or the Control
Toolbox, which I had earlier presumed was your subject.

Try Debra Dalgleish's good coverage on the steps for data validation (DV) at
her:
http://www.contextures.com/xlDataVal01.html

The DV technique is, as per Barb's response to you, to use a named range eg:
MyList housing all your 201 items, then to put it in the DV's Source:
=MyList (instead of keying in all the individual items into the Source box
itself). Try Debra's page, where she explains and illustrates the steps very
well. I'm pretty sure you'd be able get it up and going in a short time.
--
Max
Singapore
http://savefile.com/projects/236895
xdemechanik
---
"Ken Williams" wrote in message
...
Hi Max,
Guess I'm just not getting this. I am brand new to Excel. The only way I
know to try this is to Data/Valadition/Select LIST then fill the numbers
into the Source window. I am only permitted to enter 40 numbers into the
box. I can't figure out how to use the Forms to create a list box.
Thanks,
Ken



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
Automatic Update of Dropdown List Box data Rajat Excel Worksheet Functions 4 March 8th 12 05:09 PM
Editing a list of data hot dogs Excel Discussion (Misc queries) 3 November 1st 06 12:42 PM
Filter the results of a list based on a previous vlookup against the same list Mizpah Excel Worksheet Functions 2 August 18th 06 10:28 AM
Creating a List based on your choice from Another List Cristi Excel Discussion (Misc queries) 1 August 14th 06 06:00 PM
Refresh a Validation List? jhollin1138 Excel Discussion (Misc queries) 3 February 17th 05 05:48 PM


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