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 Shaun E on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Excel Validation (Dropdown) appearing in wrong columns

Status
Not open for further replies.

hsviljoen

Programmer
May 26, 2004
73
ZA
Hi there, This is a weird one....

Im working on a excel system someone else created.... The first 3 columns in the sheet contains data validation dropdowns.... When you delete a row , the dropdowns appear in other columns( Ive checked the code and it doesnt seem that the validation is created in code) Ive added code to the Worksheet_SelectionChange event :

If Target.Column > 3 Then
With Selection.Validation
.Delete
.Select
End With
Exit Sub
End If

And this doesnt work .....

Any ideas?
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top