Surely it would be better to give the user just one question with a question and code like:
Code:
With Selection.Tables(1)
With .Cell(.Rows.Count, 1).Range
If MsgBox("Start/Continue Level 2 numbering?", vbYesNo, "Inspection Report") = vbYes Then
.Style = "Heading 2"
Else
.Style = "Heading 1"
End If
End With
End With
Note: The above code only uses the 'Heading 1' & 'Heading 2' Styles for demonstration purposes.