formual help

  • Thread starter Thread starter Smilen2day
  • Start date Start date
S

Smilen2day

I have a spread sheet that I am working on. When I enter an amount in column
A, I want a formula so that it will take the number I enter minus 616.67.
And if the sum is a negative amount I want the sum to enter in column b, but
if the sum is a positive amount I want the sum to enter in column c.

How do I do this?
 
Number in A2 formula in B2:

=IF(A2-616.67<0,A2-616.67,"")

In C2 enter:

=IF(A2-616.67>=0,A2-616.67,"")

--
HTH

Sandy
In Perth, the ancient capital of Scotland
and the crowning place of kings

(e-mail address removed)
Replace @mailinator.com with @tiscali.co.uk
 
in cell B1 enter the formula
=IF(A1-616.67>0,"",A1-616.67)
and cell C1 enter
=IF(A1-616.67<0,"",A1-616.67)
 
Formula in B1:
=MIN(A1-616.67,0)
Formula in C1
=MAX(A1-616.67,0)

copy both downwards.

HTH. Best wishes Harald
 
Awesome, Thank you so much.

One other question.

Is there a way to hide the -616.67 in column B until an amount is entered in
column A.
For instance: I am doing a yearly pay register and have the formulas set up
for the year. If we are in June now, we have not paid for July thru Dec, but
it is showing a negative number of 616.67. Is there a way to make it be
blank until an amount is enter in column A for it to subtract the 616.67 from?
I hope that makes sense.
 
=IF(A2="","",IF(A2-616.67<0,A2-616.67,""))

Rick
 

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