Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Prob Using Macro On Data Validation In Excel

Status
Not open for further replies.

rob9740

Technical User
Nov 21, 2001
30
IE
I'm trying to get each cell in a column to give the user a list to choose from when they click in it. But I also want them to be able to add to the list if the item isn't there. I'm using a data validation list at the moment so is there any way of adding to the data validation list through the use of the drop down list?????

This is what I'm using:

Public Sub CreateCustList()
With ActiveCell
.Validation.Delete
.Validation.Add xlValidateList, , , "=" & "CustomerList"
End With
End Sub

If it's not possible could anybody give me any other suggestions???
Cheers
rob9740
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top