Looking for code that will return whether or not a cell has "data validation" associated with it or not

atf32

Board Regular
Joined
Apr 13, 2011
Messages
157
OS= windows 7
MS Excel 2010

I have a worksheet with hundreds of cells that may or may not have a "data validation" associated with it. So I wrote code that will scroll through each cell in a range, and reports out some information. However I also need a line of code that will confirm (T/F) whether or not the active cell has a "data validation" associated with it.

:confused::confused:
 

Excel Facts

Excel Can Read to You
Customize Quick Access Toolbar. From All Commands, add Speak Cells or Speak Cells on Enter to QAT. Select cells. Press Speak Cells.
Consider:

Code:
Sub DVCheck()
Dim r As Range
Set r = Nothing
On Error Resume Next
Set r = Cells.SpecialCells(xlCellTypeAllValidation)
If r Is Nothing Then
    MsgBox "There is no data validation on the sheet"
End If
If Intersect(r, ActiveCell) Is Nothing Then
    MsgBox "The active cell is not data validated"
Else
    MsgBox "The active cell is data validated"
End If
End Sub
 
Upvote 0

Forum statistics

Threads
1,215,046
Messages
6,122,855
Members
449,096
Latest member
Erald

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top