K
kskinne
what i'm trying to do is loop through each report tender, and if the tender
is CASH then generate the row below. the other tenders are set up is there
anything wrong with the way I have this set up, because when I generate my Z
report, it is not adding the 200 in for my CASH tender. is there something
incorrect with the way i'm trying to test to see if the tender is cash? or
is it not 'kosher' to add 200 the way i'm trying to do it? please help
thank you,
kevin
<FOR each = "ReportTender">
<IF>
<CONDITION> Report.Tender.Description = "CASH" </CONDITION>
<THEN>
<ROW>
(Report.Tender.ShiftTotal + 200) -
Report.Tender.CloseTotal
</ROW>
</THEN>
<ELSE>
<ROW>
Report.Tender.ShiftTotal - Report.Tender.CloseTotal
</ROW>
</ELSE>
</IF>
</FOR>
is CASH then generate the row below. the other tenders are set up is there
anything wrong with the way I have this set up, because when I generate my Z
report, it is not adding the 200 in for my CASH tender. is there something
incorrect with the way i'm trying to test to see if the tender is cash? or
is it not 'kosher' to add 200 the way i'm trying to do it? please help
thank you,
kevin
<FOR each = "ReportTender">
<IF>
<CONDITION> Report.Tender.Description = "CASH" </CONDITION>
<THEN>
<ROW>
(Report.Tender.ShiftTotal + 200) -
Report.Tender.CloseTotal
</ROW>
</THEN>
<ELSE>
<ROW>
Report.Tender.ShiftTotal - Report.Tender.CloseTotal
</ROW>
</ELSE>
</IF>
</FOR>