I don't know if this is the case in your workbook but a common problem is that cells look to be empty but have a non printable character in it (space is one of the possibilities)
If you run this on each sheet it should show which ranges are empty.
Sub Check_So()
Dim c As Range
For Each c In Range("C6:C" & Cells(Rows.Count, 3).End(xlUp).Row)
If WorksheetFunction.CountA(Range(Cells(c.Row, 2), Cells(c.Row, 10))) = 0 Then c.Offset(, 8).Value = "Empty"
Next c
End Sub
Or you can run this to see how many cells in that Range are not empty.
Sub Check_So_2()
Dim c As Range
For Each c In Range("C6:C" & Cells(Rows.Count, 3).End(xlUp).Row)
c.Offset(, 8).Value = WorksheetFunction.CountA(Range(Cells(c.Row, 2), Cells(c.Row, 10)))
Next c
End Sub
Bookmarks