K
Kelvin
Wondering if someone could help with this problem
After doing a vlookup and then cleaning up with pastespecial/values
I am finding that the visually empty cells are still being counted in my
counta totals
I have tried this subroutine to clearcontents on the empty cells, which
works if I do it manually.
Sub clearempty()
For i = 3 To 588
If Cells(i, 14) = "" Then
ActiveCell.clearcontents
End If
Next i
End Sub
Can anyone tell me 1. why my clearcontents subrouting is not clearing
and 2. is there another way to clear out this invisible data in the blank
cells?
Thanks
Kelvin
After doing a vlookup and then cleaning up with pastespecial/values
I am finding that the visually empty cells are still being counted in my
counta totals
I have tried this subroutine to clearcontents on the empty cells, which
works if I do it manually.
Sub clearempty()
For i = 3 To 588
If Cells(i, 14) = "" Then
ActiveCell.clearcontents
End If
Next i
End Sub
Can anyone tell me 1. why my clearcontents subrouting is not clearing
and 2. is there another way to clear out this invisible data in the blank
cells?
Thanks
Kelvin