Feb 25, 2012 #1 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
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
Feb 28, 2012 1 Thread starter #2 azrobert Programmer Apr 27, 2002 392 US 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 Upvote 0 Downvote
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