From: zyus on
I used this expression in my text box in report

=(Abs(Sum(([mthtag]="Current Month" And [ACCTSTAT]="Current")*[NET_BAL])))

How to use sort of the same expression of the above but to display text data
only. I tried to use this expression but failed

=([mthtag]="Current Month" And [ACCTSTAT]="Current")*[Branch]

Thanks
From: RonaldoOneNil on
=IIf([mthtag]="Current Month" And [ACCTSTAT]="Current",[Branch],"")

"zyus" wrote:

> I used this expression in my text box in report
>
> =(Abs(Sum(([mthtag]="Current Month" And [ACCTSTAT]="Current")*[NET_BAL])))
>
> How to use sort of the same expression of the above but to display text data
> only. I tried to use this expression but failed
>
> =([mthtag]="Current Month" And [ACCTSTAT]="Current")*[Branch]
>
> Thanks