Hi.
I would like to format a field so that it only prints amounts for money expected in the current month. I have the following formula in the "Suppress" section of the Format Editor:
//Only show amounts for $$ expected in current month
If Month({TEMPUS_OPP.DEPOSIT_ORIG_DATE}) = Month(currentdate)
Then
{TEMPUS_OPP.DEPOSIT_AMOUT} = {TEMPUS_OPP.DEPOSIT_AMOUT}
Else
True
However, this seems to be suppressing all data. Is there something wrong with my data?
Thanks in advance.
I would like to format a field so that it only prints amounts for money expected in the current month. I have the following formula in the "Suppress" section of the Format Editor:
//Only show amounts for $$ expected in current month
If Month({TEMPUS_OPP.DEPOSIT_ORIG_DATE}) = Month(currentdate)
Then
{TEMPUS_OPP.DEPOSIT_AMOUT} = {TEMPUS_OPP.DEPOSIT_AMOUT}
Else
True
However, this seems to be suppressing all data. Is there something wrong with my data?
Thanks in advance.