Mailmerge coding

N

Noel

I have a mail merge that has information merged from an access database. I
have my coding to be
{IF {MERGEFIELD BuyBackCreditQuarters } >0 {MERGEFIELD Quarterly_Cost -
QuarterlySubsidy \ #$,0.00{ "$0.00"}

I need it to merge the difference of Quarterly Cost and Quarterly Subsidy
into this field.

Thanks
 
M

macropod

Hi Noel,

Try:
{IF{MERGEFIELD BuyBackCreditQuarters }> 0 {={MERGEFIELD Quarterly_Cost}-{MERGEFIELD QuarterlySubsidy} \# $,0.00;($,0.00)}}
 
Top