Count cells that have data validation

benhodges

New Member
Joined
Mar 31, 2014
Messages
4
How do I count the cells that have a data validation list?

In a column, I have some cells that have a data validation list and some cells that don't. I want to count the number of cells that have a data validation list. None of the cells contain values. They only contain text data.

My attempt was =COUNTIF(C2:C45, DataValidation)

This returned only 0, despite there being cells with a data validation list.

Just to be clear, I don't need to count the data that's in a data validation list, just the number of cells that have a data validation list.

Thank you.
 
Last edited:

Excel Facts

Why does 9 mean SUM in SUBTOTAL?
It is because Sum is the 9th alphabetically in Average, Count, CountA, Max, Min, Product, StDev.S, StDev.P, Sum, VAR.S, VAR.P.
You can count with code like this:-
Code:
MsgBox Columns("C:C").SpecialCells(xlCellTypeAllValidation).Count
 
Upvote 0

Forum statistics

Threads
1,223,898
Messages
6,175,272
Members
452,628
Latest member
dd2

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