I am looking for VBA code doing this:
If cell in column A is empty insert Text. Stop at row that has no values
Here you can see that row ID 28 is the last column and no TEXT is added to the rows underneath 28
So far I wrote this code but don't know hot to solve the problem
If cell in column A is empty insert Text. Stop at row that has no values
Here you can see that row ID 28 is the last column and no TEXT is added to the rows underneath 28
So far I wrote this code but don't know hot to solve the problem
VBA Code:
Dim excelarea As Range
Dim excelcell As Range
Set excelarea = Worksheets("Table1").Range("A1:A100")
For Each excelcell In raBereich
If excelarea = "" And excelcell.Offset(0, 1) <> "" Then
[INSERT TEXT IN EACH EMPTY CELL IN THE COLUMN A "HERE MISSING"]
End If
Next excelcell
End Sub