![]() |
|
#8
|
|||
|
|||
|
Try the following:
Code:
Sub Del_Test()
Dim oRng As range
Set oRng = selection.Paragraphs(2).range
If InStr(oRng, "Example") Then
oRng.Collapse
oRng.MoveEndUntil cset:="Example"
Else
oRng.Collapse
oRng.MoveEnd unit:=wdCharacter, count:=8
End If
oRng.Delete
Set oRng = Nothing
End Sub
|
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Deleting all text from a slide pack without deleting the formatting | redordead2389 | PowerPoint | 0 | 05-31-2023 06:50 AM |
Word macro for deleting a line that starts with a specific character + deleting the line before
|
eduardb | Word | 1 | 08-10-2022 03:17 AM |
| Inserting text from a Userform into a Field in a paragraph in a paragraph in a word document | storemaz | Word VBA | 1 | 03-13-2020 08:11 AM |
Deleting paragraph commands
|
afndst | Word VBA | 2 | 12-30-2015 02:07 AM |
Deleting a script in an equation without deleting the whole term
|
allankey | Word | 1 | 02-15-2014 07:09 AM |