All i’m trying to do is fill in NULL in the cells that are blank.
source code:
Sub fillNULLs()
Dim count As Integer
count = 0
Dim col As Integer
col = 2
While count < 23403
If (Cells(count, col) = "") Then
Cells(count, col) = "Null"
End If
count = count + 1
Wend
End Sub
I run the macros and i get a 400 and an okay button. Can anyone spot the issue
I guess that count should be 1 at first before While loop