Formula Help Needed!!!

R

rory

I am doing a estimate and for each line item, I have a Total Column. If that
total cell reads as a positive, I want it to read into a specific cell. If
that total cell reads as a negative, I want it to read into a difference
specific cell.

How do I do this?
 
G

Gary''s Student

Here is an example that is easy to adapt to your specific needs. Say the
totals are in column A and they can be either positive or negative.

In B1 enter:
=IF(A1>0,A1,"")
and copy down


In C1 enter:
=IF(A1<=0,A1,"")
and copy down

So the cells in column A will show up in either cols B or C, depending upon
wether they are positive or not.
 
S

Shane Devenshire

Hi,

In one of the two cells where you want it use

=IF(A1>0,A1,"")
in the other
=IF(A1<0,A1,"")
 

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

Top