View Single Post
 
Old 02-07-2017, 05:17 PM
Stefan Blom's Avatar
Stefan Blom Stefan Blom is offline Windows 7 64bit Office 2013
Moderator
 
Join Date: Aug 2011
Posts: 4,049
Stefan Blom is a name known to allStefan Blom is a name known to allStefan Blom is a name known to allStefan Blom is a name known to allStefan Blom is a name known to allStefan Blom is a name known to all
Default

You can make use of a macro such as the following:

Code:
Sub DeleteCurrentBulletItem()
On Error GoTo errhandler
If Selection.Paragraphs(1).Range.ListFormat.ListTemplate Is Nothing Then
Exit Sub
End If
Selection.Paragraphs(1).Range.Delete
errhandler:
Exit Sub
End Sub
You can attach the macro to a button on the Quick Access Toolbar and/or to a keyboard shortcut.
__________________
Stefan Blom
Microsoft Word MVP

Microsoft 365 apps for business
Windows 11 Professional
Reply With Quote