Conga Composer can apply formatting options to write out numbers within fields as ordinal text.

These features return English values only but are helpful for currencies and numbers that need to be written out, such as on a check or in a contract.

Format CodeDescription
\* CardTextFormats a number as English words.

{{Opportunity_Amount \* CardText}} Returns five thousand two hundred forty five.

To capitalize each word, also use \* FirstCap.

\*DollarText

Formats a number as English words in a bank-check style.

{{Opportunity_Amount \*DollarText}} Returns five thousand two hundred eighty and 00/100.

To capitalize each word, also use \*FirstCap.

Dollar amount must be less than $999,999.99.

\* OrdinalFormats an integer as an ordinal number, such as 1st or 2nd.

Can also be used with number fields or the "day" or "month" portion of a Date field.

{{Opportunity_CloseDate \@ "MMMM"}} the {{Opportunity_CloseDate \@ "d" \* Ordinal}}, {{Opportunity_CloseDate \@ "yyyy"}} returns March the 14th, 2014.

\* FirstCapCapitalizes the first letter of the first word.

{{ACCOUNT_NUMBEROFEMPLOYEES \* CardText \* FirstCap}} returns Five thousand two hundred forty five.

Multiple picture switches may be applied to one merge field.

The example above shows both the CardText and FirstCap picture switches. When using FirstCap in conjunction with CardText, there cannot be a space between \* and CardText. Example: \*FirstCap \*CardText