A family of Microsoft word processing software products for creating web, email, and print documents.
As regards the hyperlinks, I don't think I can do what I hoped without becoing a coder as the hyperlink would be neither in the body test of the mail merge nor an seperate URL link in a cell in the worksheet.
In that case, you could probably do it via field coding. For example:
{HYPERLINK "{IF{MERGEFIELD Event}= "Theatre" "https://www.theatre.com"}{IF{MERGEFIELD Event}= "Art Gallery" "http://www.artgallery.com"}{IF{MERGEFIELD Event}= "Sightseeing Tour" "https://www.A2ZCitytours.com"}{IF{MERGEFIELD Event}= "Zoo" "https://www.StateZoo.com"}"}
or:
{HYPERLINK "{IF«Event»= "Theatre" "https://www.theatre.com"}{IF«Event»= "Art Gallery" "http://www.artgallery.com"}{IF«Event»= "Sightseeing Tour" "https://www.A2ZCitytours.com"}{IF«Event»= "Zoo" "https://www.StateZoo.com"}"}
Note: The field brace pairs (i.e. '{ }') for the above examples are all created in the document itself, via Ctrl-F9 (Cmd-F9 on a Mac); you can't simply type them or copy & paste them from this message. Nor is it practical to add them via any of the standard Word dialogues. Likewise, the chevrons (i.e. '« »') are part of the actual mergefields - which you can insert from the 'Insert Merge Field' dropdown (i.e. you can't type or copy & paste them from this message, either). The spaces represented in the field constructions are all required.