Excel Sum

Soldato
Joined
7 Feb 2004
Posts
3,072
I'd really appreciate it if someone could help me out with a sum that I can paste into an excel spread sheet.

I have designed a spread sheet that you enter the quanity into each product and it gives you a total price for that number of products.

I then need it to add each individual sum and give me a total sum, this bit i can do but I then need it so that if the sum is less than £150 it adds £10 on, over this amount, nothing gets added on.

Thanks.
 
Using a IF function it should look something like this:

=IF(C7<150;C7+10)

where C7 is the cell that holds your total price.
 
Much appreciated, just noticed your reply while I typed mine out, I'd put into mine D12+0 at the end which I've obviously now realised after reading yours I don't need the +0

Thanks for that you've been a great help :D
 
Back
Top Bottom