Dear @Ashleigh Milburn,
Thank you for reaching out to Microsoft Q&A forum.
I understand that you would like to include one or multiple pictures in a mail merge. Based on your screenshot, the first command is spelled INCLUDEPICTIRE. This spelling error will prevent Word from recognizing the field. It must be spelled INCLUDEPICTURE in both instances.
To display images only when a specific column (for example, "ShowImage") contains Yes, you can use the following nested field structure:
{ IF { MERGEFIELD ShowImage } = "Yes" "{ INCLUDEPICTURE "{ IF TRUE { MERGEFIELD ImageURL } }" \d }" "" }
Breakdown of this logic:
The Outer IF: Checks if the ShowImage column equals "Yes".
If yes, it runs the INCLUDEPICTURE command.
The IF TRUE: This is to force Word to refresh the image for every record, rather than showing the same first image for everyone.
The \d switch: This tells Word not to store the image data in the file, which is essential for dynamic updates.
Additional notes:
- Remember to press Alt + F9 to toggle between the "Result" view and the "Code" view so you can edit these manually.
- You cannot just type the curly braces { }. You must create them by pressing Ctrl + F9 for each set of brackets.
- Ensure the data in your MERGEFIELD Image column contains the full path (e.g., C:\Images\Photo1.jpg or a full web URL). Note that local paths in Word often require double backslashes.
- When merging to email, images may be blocked by the recipient’s mail client. For better reliability, consider using web-hosted image URLs.
I hope this information is helpful. Please follow these steps and let me know if it works for you. If not, we can work together to resolve this. Thank you for your patience and understanding. If you have any questions or need further assistance, please feel free to share them in the comments so I can continue to support you. I'm looking forward to your reply.
If the answer is helpful, please click "Accept Answer" and kindly upvote it.
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.