How to create Dropdown lists not using Data Validation

G

Guest

Does anyone have any suggestions on creating dropdown lists other than using
Data Validation. I'm creating a checklist in Excel and I want to control what
users enter and also do some conditional formatting (i.e. select completed,
the cell goes green, overdue, the cell turns red).

I expect to have about 20 items to track and for each one the options will
be different. The reason I don't want to use Data Validation is that I want
to publish this to Sharepoint and Sharepoint Excel web part services do not
support Data Validation.

Would appreciate any suggestions. Thanks!
 
G

Guest

combo box from forms toolbar
Input range Reference to the range containing the values to display in
the drop-down list.

Cell link Returns the number of the item that's selected in the combo box
(the first item in the list is 1). You can use this number in a formula or
macro to return the actual item from the input range.

For example, if a combo box is linked to cell C1 and the input range for the
list is D10:D15, the following formula returns the value from range D10:D15
based on the selection in the list:

=INDEX(D10:D15,C1)

Drop-down lines Specifies the number of lines to display in the drop-down
list.

3D shading Displays the combo box with a 3-dimensional shaded effect
 
D

Dave Peterson

Maybe you could create a userform that gets the information from the user?

I don't use Sharepoint, so I don't know if userforms work under that.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top