× The internal search function is temporarily non-functional. The current search engine is no longer viable and we are researching alternatives.
As a stop gap measure, we are using Google's custom search engine service.
If you know of an easy to use, open source, search engine ... please contact support@midrange.com.



SQL jumps thru hoops, I believe, to retain precision when doing calculations. (It's all explained somewhere in the manual, but floating point can be involved.)
So in
Select A5AN8 as Customer, (A5CMR1 + A5CMR2)/1000 as CommRate
I have no idea what precision CommRate is, or what type is is.

I'd suggest something like
Select A5AN8 as Customer, cast((A5CMR1 + A5CMR2)/1000 as dec(9,2) as CommRate

Or maybe it should be 9.3, because you divide it by 100 further down.

You might also want to do something similar where you calculate Commission.

If the hex came out as blanks, then I'd guess (maybe) it was null. Not sure why--maybe a join results in a null because there is no match.

Can you isolate one customer and item where it occurs and hard code them in the first CTE to make debugging easier.

Sam

On 11/1/2016 2:31 PM, Bob Cagle wrote:
Sam

Thanks for the hex suggestion - unfortunately, that column is also showing all plus signs.

CommRate is already being cast to dec(9,2), and doing a cast on Commission to dec(10,2) has no effect either.

I'll keep trying things...

Thanks
Bob



As an Amazon Associate we earn from qualifying purchases.

This thread ...

Follow-Ups:
Replies:

Follow On AppleNews
Return to Archive home page | Return to MIDRANGE.COM home page

This mailing list archive is Copyright 1997-2024 by midrange.com and David Gibbs as a compilation work. Use of the archive is restricted to research of a business or technical nature. Any other uses are prohibited. Full details are available on our policy page. If you have questions about this, please contact [javascript protected email address].

Operating expenses for this site are earned using the Amazon Associate program and Google Adsense.