Hi there,
I have what I am sure is a very simple question to answer. I know very little about VBA so help is requested for this.

I have a lot of reviewing to do in a number of documents. I have set up a macro that will accept the current change (the one that is presently highlighted) and then jump to highlighting the next one.
The trouble is that if I don't have a change highlighted then I of course get an error.
What I would like to do is test if there is a change highlighted.
If FALSE then jump to next change. If TRUE then accept it and jump to the next one.
The existing code which was generated by macro recorder looks like this:

Sub AcceptChange()
WordBasic.AcceptChangesSelected
WordBasic.NextChangeOrComment
End Sub

What must I add to get it to do what I have described?

I give thanks for your time and assistance.

Jonathan