Using Word VBA, does anyone know how to delete bookmark text without deleting the bookmark itself? I've tried the following code, but it deletes the entire bookmark and then won't re-create it: With ThisDocument.Bookmarks Set rngBk = .Item(BK).Range .Item(BK).Range.Delete .Add BK, rngBk End With...