Hi all,
I'm trying to streamline a process whereby creating a macro in word to search for string ranges in a title document so that the results of such searches are copied and pasted in the subject document to avoid copying errors.

I've created the code to search and open the dialogue box so that the user can select the appropriate word search document.

Set objDoc = ActiveDocument

Set dlgOpen = Application.FileDialog(FileDialogType:=msoFileDialogOpen)
TCtitledoc = False
Do Until TCtitledoc = True
With dlgOpen
.AllowMultiSelect = True
.Show
If .SelectedItems.Count > 0 Then
TCtitle = .SelectedItems(1)
Else
MsgBox "Please select a title search document to use for processing"
End If
End With
If InStr(1, TCtitle, ".doc") > 0 Then
'proceed
TCtitledoc = True
Else
MsgBox "The file must be a valid word doc. file. Try again please..."
End If
Loop

Application.ScreenUpdating = False
blnClosetitlesearch = True

I've also attempted to create the string search code for one aspect, but struggling to reference bookmarks in the original document and linking it all together.

Search Document below:

title search document example.jpg

subject document to be populated

report template.jpg

Appreciate anyone's help that knows more about it than me.

Thanks in advance.