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 yadda()
Dim r As Range
Set r = ActiveDocument.Range
With r.Find
Do While .Execute(FindText:="building", _
Forward:=True) = True
With r
.Collapse 0
.MoveEndUntil Cset:=vbCrLf
.Delete
End With
Loop
End With
End Sub
Sub bleech()
Dim r As Range
Dim var
Set r = ActiveDocument.Range(0, 0)
MsgBox r.Text
var = r.MoveEndUntil(Cset:="whatever")
r.Select
MsgBox var & " " & r.Text
End Sub