Hi,
I have created two formulas:
@DecreasedAppetiteFlg
If FldA = 123 then
'N'
Else If FldA = 543 then
'Y';
@MaxAppetiteFlg
Maximum ({@DecreasedAppetiteFlg}, Dt_Tm})
(NOTE: rpt is grouped on Dt_Tm)
I am trying to suppress the group footer when @MaxAppetiteFlg is blank or null. But this code isn't working:
{@MaxAppetiteFlg} = "" or {@MaxAppetiteFlg} = " "
Any other suggestions? TIA!
I have created two formulas:
@DecreasedAppetiteFlg
If FldA = 123 then
'N'
Else If FldA = 543 then
'Y';
@MaxAppetiteFlg
Maximum ({@DecreasedAppetiteFlg}, Dt_Tm})
(NOTE: rpt is grouped on Dt_Tm)
I am trying to suppress the group footer when @MaxAppetiteFlg is blank or null. But this code isn't working:
{@MaxAppetiteFlg} = "" or {@MaxAppetiteFlg} = " "
Any other suggestions? TIA!