basenine 4/8/2024 7:38:57 PM Mergefields with TableStart:[Field] and TableEnd:[Field] would be required to achieve this. TableStart/End are not standard in MSWord. In this case, TD would need to support TableStart/End within their document generator. From memory, TD use Aspose (??) which supports TableStart/End using mail merge with regions...something like: doc.MailMerge.ExecuteWithRegions(data). I've got a feeling (but likely incorrect) TD may be using something like: doc.MailMerge.Execute(data) which was how Aspose was initially shipped. Here's some more documentation for reference: https://docs.aspose.com/words/net/types-of-mail-merge-operations/ |