MikeCopeland
Programmer
Using CR XI...
I have the following formula that produces a value that I'd like "duplicae suppression" applied. The formula is placed on Group Footer #4, and the Format Editor won't process the "Suppress If Duplicated" box when I check it. I understand that this option doesn't work well in a Group Footer, but I don't know how to do it another way (e.g. global variable that's checked within the formula, etc.). Please advise. TIA
// @Status
if({ClientPacket.PacketKey} = 42) then "Discharge"
else
if({ClientPacket.PacketKey} = 47) then "Review"
else "Unknown"
Example:
Current Output:
Bernal, Maressa
90% Review 08/05/2008
0% Review 08/05/2008
90% Review 08/05/2008
80% Review 08/05/2008
0% Review 08/05/2008
90% Discharge 08/22/2008
0% Discharge 08/22/2008
90% Discharge 08/22/2008
80% Discharge 08/22/2008
50% Discharge 08/22/2008
...........................................
Desired Output:
Bernal, Maressa
90% Review 08/05/2008
0%
90%
80%
90% Discharge 08/22/2008
0%
90%
80%
50%
............................................
I have the following formula that produces a value that I'd like "duplicae suppression" applied. The formula is placed on Group Footer #4, and the Format Editor won't process the "Suppress If Duplicated" box when I check it. I understand that this option doesn't work well in a Group Footer, but I don't know how to do it another way (e.g. global variable that's checked within the formula, etc.). Please advise. TIA
// @Status
if({ClientPacket.PacketKey} = 42) then "Discharge"
else
if({ClientPacket.PacketKey} = 47) then "Review"
else "Unknown"
Example:
Current Output:
Bernal, Maressa
90% Review 08/05/2008
0% Review 08/05/2008
90% Review 08/05/2008
80% Review 08/05/2008
0% Review 08/05/2008
90% Discharge 08/22/2008
0% Discharge 08/22/2008
90% Discharge 08/22/2008
80% Discharge 08/22/2008
50% Discharge 08/22/2008
...........................................
Desired Output:
Bernal, Maressa
90% Review 08/05/2008
0%
90%
80%
90% Discharge 08/22/2008
0%
90%
80%
50%
............................................