HI all,
Can you help me about my problem here in Report Designer. I created a number wording for the printing of Checks, but my problem here is how do I insert the word of “PESOS” like this output:
This is my coding in report designer
= IIF([APPayment.ExtRefNbr]<>[APPrintCheckDetailWithAdjdDoc.StubNbr],
'* VOID *',
PadRight(UCASE(replace(replace(' ' + [APPayment.AmountToWords], ' ', ' '), ' ', ' and XX/100')), 60, ' ')
)
If I insert the PESOS from this code
PadRight(UCASE(replace(replace(' ' + [APPayment.AmountToWords], ' ', ' '), ' PESOS ', ' and XX/100')), 60, ' ')
the word PESOS is not showing (no error encountered while saving this)
Thanks