boardburner
Technical User
Using CR9
I have used the following formula in the detail section to suppress duplicate records ..BUT.. I also get a single extra record for each record that has an open PO condition. In each instance where there is a PO how can I get only the (1) record showing the PO issued?
It is almost like I need to re-run
again "after" to get rid of the extra record that doesn't have the PO ??
Thanks
I have used the following formula in the detail section to suppress duplicate records ..BUT.. I also get a single extra record for each record that has an open PO condition. In each instance where there is a PO how can I get only the (1) record showing the PO issued?
Code:
//check for open PO
if {@POIssue}=0
// suppress duplicate part records
then{ipart.ippart}=previous({ipart.ippart})
It is almost like I need to re-run
Code:
{ipart.ippart}=previous({ipart.ippart})
Thanks