Skip to content
Advertisement

Why I can’t do a multipage mail merge?

What I am currently trying is doing a multi page mail merge, the problem is that currently i just overwrite the content with my second map.

This are the important code snippets:

JavaScript

Here you can find my document as XML (docPr has different ids in reality, just used this file for a other question)

So I think there are 2 ways to approach this:

  1. Change the names of the merge fields that every merge field is unique
  2. Only merge on one page so I don’t have to rename every field

I think there must be a way to do handle this for every page or am I wrong?

I also tried out Variable Replace but this doesn’t work for textfields, I now try to get into content controls, maybe this will solve my problem.

Advertisement

Answer

Okay I just implemented my own simple Mail Merge for text objects. I hope it’s maybe usefull for someone in the future 🙂

  1. Simple Version:
JavaScript
  1. More complex version, I think it would be possible to simplify it more, but for me it works 🙂
JavaScript

This is what the data variable looks like: List<Map<DataFieldName, String>> data So the complex version is just iterating over all data and replacing the text object of the mergefields with the given text, the name of the merge field will stay the same.

I will test the complex version tomorrow, but i think it should work 🙂


The only thing that annoys me a bit is that unchecked cast warning, maybe someone knows how to fix this. I looked at some questions, espacilly this one is quite popular but I don’t unterstand what I’m doing wrong here.

User contributions licensed under: CC BY-SA
6 People found this is helpful
Advertisement