Hi guys
In my project, I only want a certain If command to run in a particular column has at least one non blank cell in it. So if column J has a value in it, then I want this If command to run.
I tried the following code but got runtime error 13:
Is there a way of getting the first If command to check if the column is blank before running the next If?
Thanks
In my project, I only want a certain If command to run in a particular column has at least one non blank cell in it. So if column J has a value in it, then I want this If command to run.
I tried the following code but got runtime error 13:
Code:
If Columns(10) <> "" Then
If... Then...
End If
Is there a way of getting the first If command to check if the column is blank before running the next If?
Thanks