Find empty cells in multiple range of cells

sanilmathews

Board Regular
Joined
Jun 28, 2011
Messages
102
HI,

I am trying to build a checklist wherein user inputs a string in column A within the following ranges A6:A8, A10:A14, A16:A18 and A20:A23. I can also name these ranges as Sec1, Sec2, Sec3, and Sec4 for easy reference in the code.

I am trying to get a vba code that would check if all the cells in the range are filled with any string. If any single cell is empty, a message should pop up saying "One or more cells are blank" and if all cells are filled then return "Checklist completed".

Thanks
 

Excel Facts

Convert text numbers to real numbers
Select a column containing text numbers. Press Alt+D E F to quickly convert text to numbers. Faster than "Convert to Number"
Code:
Sub CheckForBlanks()
On Error Resume Next
Dim c As Range, d As Range
Set c = Union(Range("A6:A8"), Range("A10:A14"), Range("A16:A18"), Range("A20:A23"))
Set d = c.SpecialCells(xlCellTypeBlanks)
If d Is Nothing Then MsgBox "Checklist Completed" Else MsgBox "One or more cells are blank"
End Sub
 
Last edited:
Upvote 0

Forum statistics

Threads
1,215,854
Messages
6,127,339
Members
449,377
Latest member
CastorPollux

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