Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Sub b()
Dim lRow As Long, lCnt As Long
lRow = [A65536].End(xlUp).Row
For lCnt = lRow To 2 Step -1
If Cells(lCnt, 1) = "hello" Then
Cells(lCnt, 1).Delete Shift:=xlToLeft
End If
Next
End Sub
Sub a()
Dim i
Dim lRow As Long
lRow = Range("A65536").End(xlUp).Row
i = 2 'Row index
Do While lRow >= i
Do Until IsEmpty(Cells(i, 1))
If Cells(i, 1).Value = "hello" Then
Cells(i, 1).Delete Shift:=xlToLeft
Else: i = i + 1
End If
Loop
i = i + 1
Loop
End Sub