Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Shaun E on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Simple addition question regarding Addition

Status
Not open for further replies.

118600

Vendor
Feb 15, 2005
36
DE

Hi Guys,

a quick question related to simple addition. i want to add many values like 12.83 233.88 233.23 124.93 213.93 .... it means till 2 decimal. But when i add all of these values i get the answer like 6323,8778734.... ( too many decimal digits) if i round them by ROUND(Sum(.....),2), is it a better way ? because i wanna get exact answer till 2 decimal digits...

anyone can help me ?

Cheers
 
Apply an appropriate format to the textbox or control where the total is being displayed. For example:

#,##0.00

will display 2 decimal places with commas at the thousand markers.

John
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top