Percentage Discount Total

  • Thread starter Thread starter mdj101
  • Start date Start date
M

mdj101

Hi All,

Can anyone help me with the following.

I have the formula =SUM(D2*(20/100)) which gives me the discount value
of cell D2 i.e if D2 = £10 then the SUM = £2

But I want the formula to work out the total minus the sum ie.

£10 - 20% = £8

I hope ive made this clear, maybe im just going about it the wrong way.
 
Try:
=SUM((D2*(1-(20/100))))
seems to work..
although only =D2*(1-(20/100))
will accomplish.
HTH
 
mdj101 said:
I have the formula =SUM(D2*(20/100)) which gives me the discount
value of cell D2 i.e if D2 = £10 then the SUM = £2
But I want the formula to work out the total minus the sum ie.
£10 - 20% = £8

There are usually many ways to accomplish the same thing.
Perhaps the simplest for you to understand is to formulate it
exactly as you described, to wit one of the following:

=D2 - D2*20/100
=D2 - D2*20%

Note: There is no reason to use SUM() in this formula.
I am curious: why did you do it in the first place?

Also note: You might want to add some appropriate rounding.
What is "appropriate" depends on your goals and monetary
system. For example, one of the following (for US dollars):

=ROUND(D2 - D2*20%, 2)
=D2 - ROUND(D2*20%, 2)
 

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

Similar Threads

Average problem 1
CALCULATE WITH AVERAGE ???? 1
HELP WITH A SIMPLE FORMULA 1
Subtotal based discounts 2
SUM troubleshoot 2
using if for multiple criteria 22
sumifs problem 1
Percentage Help 1

Back
Top