Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Micros sim - Subtotal 1

Status
Not open for further replies.

azrobert

Programmer
Apr 27, 2002
392
US
I haven't had to do any sim work in a long time...
I see the system variable @TtlDue holds the check total

is there a variable that holds the subtotal without tax ?

or what is the best way to get it ?

Thanks in advance
 
Think I got it.... Ended up not using it but this is what I came up with.

var test: $8
var dtl_cnt : n8

for dtl_cnt = 1 to @numdtlt
test = test + @dtl_ttl[ dtl_cnt ]
endfor
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top