I have the following formula,
if {_MTMTRP.TAPTDT} >= 20031001
then if {_MTMTRP.TAPTDT} <= 20031031
then if {_MTMTRP.TREASC}="08"
then 1 else 0
I actually have 100 of the above formulas where {_MTMTRP.TREASC}= (different numbers 1-100). What I need is below.
1 = 12
2 = 18
3 = 0
4 = 5
5 = 7
What I want is if 0 is returned above I don't want that to show at all, how would I do this??
if {_MTMTRP.TAPTDT} >= 20031001
then if {_MTMTRP.TAPTDT} <= 20031031
then if {_MTMTRP.TREASC}="08"
then 1 else 0
I actually have 100 of the above formulas where {_MTMTRP.TREASC}= (different numbers 1-100). What I need is below.
1 = 12
2 = 18
3 = 0
4 = 5
5 = 7
What I want is if 0 is returned above I don't want that to show at all, how would I do this??