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 InsertCol()
Dim rFound As Range, iPrevCol As Integer
Set rFound = Rows(1).Find("Banana")
Do While iPrevCol < rFound.Column
With rFound
.Offset(0, 1).EntireColumn.Insert xlRight
.Offset(0, 1).Value = "Coconut"
End With
iPrevCol = rFound.Column
Set rFound = Rows(1).Find("Banana", rFound)
Loop
End Sub