ASTROPLASTICS
Technical User
I am using a formula like this:
If IsNull({LABOR_TICKET.TRANSACTION_ID}) then 0 else
IF{LABOR_TICKET.TRANSACTION_ID} <> PREVIOUS({LABOR_TICKET.TRANSACTION_ID})
THEN{LABOR_TICKET.GOOD_QTY} ELSE 0
this is in the detail section of my report. My first return is blank and I do not have the option to summarize or subtotal on this field. Because my field (labor_ticket.good_qty) appears numerous times within a group and I only want to calculate it once for that group I chose to use this formula. If there is an easier way I am open to ideas.
If IsNull({LABOR_TICKET.TRANSACTION_ID}) then 0 else
IF{LABOR_TICKET.TRANSACTION_ID} <> PREVIOUS({LABOR_TICKET.TRANSACTION_ID})
THEN{LABOR_TICKET.GOOD_QTY} ELSE 0
this is in the detail section of my report. My first return is blank and I do not have the option to summarize or subtotal on this field. Because my field (labor_ticket.good_qty) appears numerous times within a group and I only want to calculate it once for that group I chose to use this formula. If there is an easier way I am open to ideas.