Product - Conditions - Edited Results

  • Thread starter Thread starter chelledc
  • Start date Start date
C

chelledc

I have the following.....

A B
1 ?????? Sum=(A1)*(-15%)+A1 To get net figure for
sales

Example
18,358.00 15,604.30

How do I get the answer in B to round up or remove the change?

Any help would be appreciated.

Thanks,
 
Roundup: =CEILING(A1*(1-15%),1)

remove the change: =FLOOR(A1*(1-15%),1)
 
chelledc said:
I have the following.....

A B
1 ?????? Sum=(A1)*(-15%)+A1 To get net figure for
sales

Example
18,358.00 15,604.30

How do I get the answer in B to round up or remove the change?

Any help would be appreciated.

Thanks,

To "round up":

=ROUNDUP(A1*.85,0)


To "remove the change":

=ROUND(A1*.85,0)
 
Glenn said:
To "round up":

=ROUNDUP(A1*.85,0)


To "remove the change":

=ROUND(A1*.85,0)


Sorry, the second one will round up or down to the closest whole number.


To "remove the change":

=ROUNDDOWN(A1*.85,0)
 
THANK YOU!!!! It worked perfectly. I appreciate you and your knowledge.
Chell
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top