simple excel formula

P

Paolo Orlando

Hi everybody, I know it's pretty trivial, but I need your help. I just want
to have in the final calculation of an excel formula a value without
decimals. How can I insert the "decrease decimals" function or an equivalent
into the cells?
 
G

Gary''s Student

Use the ROUND() Function:

if you were using something like :
=A1+B1
then use:
=ROUND(A1+B1,0)
 
Top