Jan 24, 2002 #1 kutibo MIS Joined Dec 19, 2000 Messages 22 Location US How can I force percentages to add up to 100%? Example: Qty. Total Qty. Percent 100 300 33.33% 100 300 33.33% 100 300 33.34% Thanks
How can I force percentages to add up to 100%? Example: Qty. Total Qty. Percent 100 300 33.33% 100 300 33.33% 100 300 33.34% Thanks
Jan 24, 2002 #2 lblastick Programmer Joined Jan 24, 2002 Messages 18 Location US In Access 2000 you can just use the round function on the result to make it the proper number of digits ROUND(number,num_digits) Upvote 0 Downvote
In Access 2000 you can just use the round function on the result to make it the proper number of digits ROUND(number,num_digits)
Jan 24, 2002 Thread starter #3 kutibo MIS Joined Dec 19, 2000 Messages 22 Location US Thanks and good idea... but I have to use '97 Upvote 0 Downvote
Jan 24, 2002 #4 raskew Programmer Joined Oct 18, 2000 Messages 488 It's unclear how you're applying this, however, in your example: Sum(Qty) / (Total Qty) will return 1 (i.e. 100%) Upvote 0 Downvote
It's unclear how you're applying this, however, in your example: Sum(Qty) / (Total Qty) will return 1 (i.e. 100%)