Computing.Net > Forums > Office Software > excel formula help

Computer Problems? Computing.Net has over 1,000,000 posts about all things technology related! Over 90% answered within 24 hours! Click here to start participating now! Also, be sure to check out the New User Guide.

excel formula help

Reply to Message Icon

Name: stormcloudgathering
Date: March 3, 2006 at 08:18:34 Pacific
OS: Windows 2000 Pro
CPU/Ram: Cerelon 2.2 ghz/750mg
Product: Dell Optiplex GX60
Comment:

Hi chaps
I'm not very good at Excel for which I apologise!

I am trying to populate a cell with the results of a sum in another
cell.
What I have is a kind of grid, if the value in cell A1 is 0 then that
value must appear in cell D6. If the value in cell A1 is between 1 and
3 then that value must appear in cell D7
Does that make sense?!


Any help would be really appreciated.
Many thanks
lynne



Sponsored Link
Ads by Google

Response Number 1
Name: StuartS
Date: March 3, 2006 at 09:44:09 Pacific
Reply:

You need two if formula's.

In cell D6 put the following:

=IF(A1 = 0,A1,"")

This means if A1 is = 0 then put the contents of AI into this cell, otherwise make it blank.

In Cell D& put the following:

=IF(A1 > 0,IF(A1 < 4,A1,""),"")

This means that if A1 > 0 then do the second If which is < 4. If both > 0 and less than for are true then put the contents of A1 into the cell, otherwise make it blank. If A1 = ) then the second If statement doesn't get executed and "" is entered into the cell

Stuart


0

Response Number 2
Name: rhawk7938
Date: March 3, 2006 at 10:23:03 Pacific
Reply:

or:
=IF(AND(A1 < 4, A1 > 0),A1,"")


0

Response Number 3
Name: elric
Date: March 6, 2006 at 09:19:39 Pacific
Reply:

G'day,

Try this:

D6=IF(A1=0,A1,"")
D7=IF(AND(A1>=1,A1<=3),A1,"")

regards,
Elric


0

Sponsored Link
Ads by Google
Reply to Message Icon

Related Posts

See More







Post Locked

This post is quite old and has been locked from receiving new replies. Please create a new posting instead.


Go to Office Software Forum Home


Sponsored links

Ads by Google


Results for: excel formula help

Excel Formula Help www.computing.net/answers/office/excel-formula-help/2797.html

excel formula help www.computing.net/answers/office/excel-formula-help/3999.html

Excel Formula, need help! www.computing.net/answers/office/excel-formula-need-help/6717.html