I have a report that pulls information from our MRP system to generate our C of C. We have added a function that counts the total number of shipments then increments that total to generate a C of C #. For some reason the details section is duplicating as many times at the number of shipments (i.e. 13560 shipments then 13650 details sections).
I can find how to suppress duplicate fields but not duplicate sections.
We have a Running total field that counts where {transaction_history.TNXCDE_15}="S" then a formula as shown below:
stringvar x;
x := cstr(count ({Transaction_History.TNXCDE_15}),0);
"ASC0000" & replace(x,",","");
I can find how to suppress duplicate fields but not duplicate sections.
We have a Running total field that counts where {transaction_history.TNXCDE_15}="S" then a formula as shown below:
stringvar x;
x := cstr(count ({Transaction_History.TNXCDE_15}),0);
"ASC0000" & replace(x,",","");