I have a merge document whose data source is a spreadsheet. The dollar amounts are formatted currency in the sheet, (actually it's a custom currency format). When I merge the document I get straight numbers. How can I format the field for currency?
I have a merge document whose data source is a spreadsheet. The dollar amounts are formatted currency in the sheet, (actually it's a custom currency format). When I merge the document I get straight numbers. How can I format the field for currency?
Thanks
chuck

This month, every Windows Secrets subscriber can download a one-chapter excerpt of Windows 7: The Missing Manual.Windows 7: The Missing Manual provides valuable information to help you overcome these difficulties in learning a new operating system. Subscribe today to download your free excerpt.
That worked beautifully. Thank you Hans.
I never would have figured that out from the help file.
Thanks
chuck
Right-click the merge field.
Select Toggle Field Codes from the popup menu.
You'll see something like
<code>{ MERGEFIELD Amount }</code>
or
<code>{ MERGEFIELD Amount * MERGEFORMAT }</code>
Make it look like
<code>{ MERGEFIELD Amount # "$#,##0.00#" }</code>
or
<code>{ MERGEFIELD Amount # "$#,##0.00#" * MERGEFORMAT }</code>
Press F9 to hide the field code and update the result.