C
Cygnus
Sorry in advance for the lack of formatting in this posting.
Data:
(column headers)
Net Sales | Royalty Rate | Total Royalty
(data)
4.31 | 50.00% | 2.15
19.35 | 50.00% | 9.68
What gives?
Here is the query that runs this calculation:
UPDATE
[WT_Royalties-detail]
SET
[WT_Royalties-detail].[Total Royalty] = Round([Net Sales]*[Royalty
Rate],2)
WHERE
((([WT_Royalties-detail].Ref)="LSI"));
So why is the first row rounding down while the second row is rounding
up?
Note: Before I added the Round() function, the rows returned 2.155 and
9.675 respectively, if that helps.
Thanks!
Data:
(column headers)
Net Sales | Royalty Rate | Total Royalty
(data)
4.31 | 50.00% | 2.15
19.35 | 50.00% | 9.68
What gives?
Here is the query that runs this calculation:
UPDATE
[WT_Royalties-detail]
SET
[WT_Royalties-detail].[Total Royalty] = Round([Net Sales]*[Royalty
Rate],2)
WHERE
((([WT_Royalties-detail].Ref)="LSI"));
So why is the first row rounding down while the second row is rounding
up?
Note: Before I added the Round() function, the rows returned 2.155 and
9.675 respectively, if that helps.
Thanks!