Hi,
I have two entire rows which I have made Named Ranges.
1. "CopyDestinationRow2" (actually Row 9 and never changes)
2. "BelowEntryBottomRow2" (varies from Row 10 to ???) Rows are added and subtracted all the time)
What I need to do is count the number of blank cells in column B only from "CopyDestinationRow2" to "BelowEntryBottomRow2".
I have been doing this with a third named range "RFPEntryArea" which is column B from "CopyDestinationRow2" to "BelowEntryBottomRow2" and the following code.
Cnt2 = Sheets("Request for Proposal Form").Range("RFPEntryArea") _
.SpecialCells(xlCellTypeBlanks).Count
The problem is even on a protected sheet if someone uses Cut and paste on column B it changes "RFPEntryArea" and the remaining code goes erratic.
Bookmarks