View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
blisspikle[_2_] blisspikle[_2_] is offline
external usenet poster
 
Posts: 3
Default Using Validation.Type on a Range

I can do the following...
If Selection.Validation.Type = xlValidateList Then
Else
End If

Why can't I use...

If Worksheets(1).Cells(7,1).Validation.Type = xlValidateList Then
Else
End If

I am using Office 2003

Thanks,