rdoulaghsingh
Board Regular
- Joined
- Feb 14, 2021
- Messages
- 105
- Office Version
- 365
- Platform
- Windows
Is there a way to add another condition to the code below to read if the cell it's targeting for the function is not blank then do not push the function? Thanks!
For Each cellAR In Range("A1:A" & Cells(Rows.Count, "A").End(xlUp).Row)
If InStr(cellAR.Text, "City, ST, Zip") > 0 Then
cellAR.Offset(0, 1) = "=CONCATENATE('Introduction CMMC'!B17)"
End If
Next cellAR
For Each cellAR In Range("A1:A" & Cells(Rows.Count, "A").End(xlUp).Row)
If InStr(cellAR.Text, "City, ST, Zip") > 0 Then
cellAR.Offset(0, 1) = "=CONCATENATE('Introduction CMMC'!B17)"
End If
Next cellAR