To clear everything to the right:
Range(Selection, Selection.End(xlToRight)).ClearContents
To clear the entire row:
Selection.EntireRow.ClearContents
But, surrounding the table are cells protected. When I use both of
abovement ClearContents solutions, I get a message that protected cells
cannot be modified. How to bypass this (so no modification, but also no
message).
A solution would be to have the focus automatically moved to the most
left cell of the active row, and then use Entire Row or the fixed
amount of cells to the right to be cleared.
Bart
Bookmarks