Calculation Issue
Posted: Tue Feb 14, 2017 7:29 am
Roger,
This ones got me..
We have a bankrcn program
The bankbal is 12,000
openar is 0
opencks is 150,000
other is 11,000
(other is rare, in this case unrecorded deposits at bank)
store BANKBAL+openar to nettot
store nettot-opencks+vother to nettot2
This calculates to 149,000 (nope, it does not)
The system is adding the other to the open checks negative instead of taking it as a stream of numbers.
Did not try (nettot-opencks)+vother but why would that be necessary??
Changed to below and it calculated properly
store BANKBAL+openar to nettot
store nettot-opencks to nettot3
store nettot3+vother to nettot2
Thanks
Fred
Omni
This ones got me..
We have a bankrcn program
The bankbal is 12,000
openar is 0
opencks is 150,000
other is 11,000
(other is rare, in this case unrecorded deposits at bank)
store BANKBAL+openar to nettot
store nettot-opencks+vother to nettot2
This calculates to 149,000 (nope, it does not)
The system is adding the other to the open checks negative instead of taking it as a stream of numbers.
Did not try (nettot-opencks)+vother but why would that be necessary??
Changed to below and it calculated properly
store BANKBAL+openar to nettot
store nettot-opencks to nettot3
store nettot3+vother to nettot2
Thanks
Fred
Omni