View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
Ayo Ayo is offline
external usenet poster
 
Posts: 489
Default Help with Data Validation.

How do I use this code segment to validate Cell C3 using the name range
"Vendor_List" on worksheets("Vendors")?

With Range("C3").Validation
.Add xlValidateList, xlValidAlertStop, xlBetween, "=$A$1:$A$10"
.InCellDropdown = True
.IgnoreBlank = False
End With