I have in detail @status:
if {Status}="A"
then "ci"
else if {Status}="I"
then "ii"
else if {Status}="S"
then "wi")
In group footer (group on J)
@statuscount:
(if {@status}="ci" then 9
else if {@status}="ii" then 8
else if {@status}="wi" then 7)
@statusmax:
Maximum ({@status}, {J})
@statusfinal – this is what I need to print
if {@statusmax}=9 then "ci"
else if {@statusmax}=8 then "ii"
else if {@statusmax}=7 then "wi"
I want to select records based of the result of the formula @statusfinal
(eg @statusfinal=“ii” and “wi”); if I try to put the condition in group selection formula I get “This formula cannot be used because it must be evaluated later”
Is there a way to do this?
Thank you very much
if {Status}="A"
then "ci"
else if {Status}="I"
then "ii"
else if {Status}="S"
then "wi")
In group footer (group on J)
@statuscount:
(if {@status}="ci" then 9
else if {@status}="ii" then 8
else if {@status}="wi" then 7)
@statusmax:
Maximum ({@status}, {J})
@statusfinal – this is what I need to print
if {@statusmax}=9 then "ci"
else if {@statusmax}=8 then "ii"
else if {@statusmax}=7 then "wi"
I want to select records based of the result of the formula @statusfinal
(eg @statusfinal=“ii” and “wi”); if I try to put the condition in group selection formula I get “This formula cannot be used because it must be evaluated later”
Is there a way to do this?
Thank you very much