XpressDox Support

MergeTemplate – XpressDox

Creating packages / suites of documents   With the MergeTemplate function, it is possible to create many assembled documents from one interview. One template can use the MergeTemplate function to assemble a new document, or

Read More »

Mod – XpressDox

Mod is used to get the remainder when dividing one number by another. It is typically used to divide sets of items into odd and even, or in a Rule. For example: «ForEach(Parent)» «Name» «End()»

Read More »

Using variables to calculate totals

XpressDox give the template author the ability to perform calculations and other operations on the values of data elements, and to store those values in variables for later use in the template. One example of this is the ability to calculate totals on repeated data elements.

Read More »

Shortcuts when using variables

With effect from Version 7, there are a number of shortcuts for referring to some of the variable-handling functions. They were introduced to take away the amount of typing necessary when many variables are being

Read More »

Multi-language Support – XpressDox

XpressDox supports multi-language XpressDox supports the user-facing interface in the language of the user.  In this context, a “user” is the person who runs a template.  That means that the XpressDox Explorer, Interview and Ribbon

Read More »

Troubleshooting XpressDox installations

Existing users of XpressDox: XpressDox has vanished from my Word toolbar (for existing users) If XpressDox was showing in your toolbar previously, but is no longer doing so, Word may have disabled the XpressDox add–in.

Read More »

MultiSelect – XpressDox

This command is the same as DefineSetAllGroup, but was renamed as MultiSelect from v12. Both will work.   There is a requirement in some templates for the interview user to be able to check a

Read More »

Now – XpressDox

Now() inserts the current date and/or time into the document. It can be formatted in the same way as FormatDate.   Command structure: «Now(“d MMMM, yyyy”)»   Examples of usage: «Now(“d MMMM, yyyy”)» yields “2

Read More »

Now and Today Functions – XpressDox

Now The Now function inserts the current date and/or time into the document. It can be formatted in the same way as for FormatDate. «Now(“d MMMM, yyyy”)» yields ‘4 November, 2010’ «Now(“MMMM o yyyy”)» yields

Read More »

NumberPhrase – XpressDox

NumberPhrase is used to convert a number to words, in several different languages. Command structure: «NumberPhrase(Area,”,’leave’)» Examples of usage: «NumberPhrase(Area,”en-us”,”ToUpper”)» Suppose a data element with name ‘Area’ has a value 1234:This would yield “ONE THOUSAND

Read More »

OnExitSet – XpressDox

Set the value of a data element on your XpressDox template «OnExitSet()» permits the template author to specify that, when a control on the interview (the trigger) loses focus, the value of another or the

Read More »

OptimizeParsing – XpressDox

During the running of a template, XpressDox creates a number of structures. The most important one is an XSLT Style Sheet, which is used to drive the engine that merges the data into the template

Read More »

Ordinal – XpressDox

Ordinal is used within a ForEach to output the ordinal value (that is, ‘first’, ‘second’, etc.) of the position in the list of the current item: «ForEach(party)» The «Ordinal(only ,first ,second ,third ,fourth ,fifth ,sixth ,subsequent )»party is «firstnames surname». «End(ForEach party)» This

Read More »