If a cell is blank

Macro Title:
Worksheet Variable:
Row Reference Variable:
Worksheet Name:
Test From Row Number:
enter the first row number of a cell from which you want to begin testing
Test To Row Number:
enter the last row number of a cell which you want to test
Test Column Number:
enter the column number of the column that captures the cells that you want to test
Output Column Number:
enter the column number of the column in which you want to return the results
Value if test is True:
enter the value that you want returned if a cell is blank
Value if test is False:
enter the value that you want returned if a cell is not blank
First Comment:

'
Second Comment:

'
Sub If_a_cell_is_blank_using_For_Loop()
'declare a variable
Dim ws As Worksheet
Set ws = Worksheets("Analysis")
'calculate if a cell is blank across a range of cells with a For Loop
For x = 5 To 11

If ws.Cells(x, 3) = "" Then

ws.Cells(x, 4) = "No"

Else

ws.Cells(x, 4) = "Yes"
End If

Next x

End Sub

Sub If_a_cell_is_blank_using_For_Loop()
'declare a variable

Dim ws As Worksheet

Set ws = Worksheets("Analysis")
'calculate if a cell is blank across a range of cells with a For Loop

For x = 5 To 11

If ws.Cells(x, 3) = "" Then

ws.Cells(x, 4) = "No"

Else

ws.Cells(x, 4) = "Yes"
End If

Next x

End Sub

Sub If_a_cell_is_blank_using_For_Loop()
'declare a variable
Dim ws As Worksheet
Set ws = Worksheets("Analysis")
'calculate if a cell is blank across a range of cells with a For Loop
For x = 5 To 11

If ws.Cells(x, 3) = "" Then

ws.Cells(x, 4) = "No"

Else

ws.Cells(x, 4) = "Yes"
End If

Next x

End Sub