IF Statement - refer to cells in a column

tlc53

Active Member
Joined
Jul 26, 2018
Messages
399
Hi there,

I am stumped as to how to construct this part of my IF formula

Column
F25 = 333,000.....G25 = 100,000
F26 = 100,000.....G26 = 333,000
F27 = 20,000.......G27 = 0
F28 ....................G28
F29 ....................G29
F30 ....................G30

This is my attempt but it's returning #VALUE !

=IF(AND(G25:G30=0,F25:F30>0),TRUE,FALSE)

I would like it to look if cell G25 = 0 and F25 > 0, or G26 =0 and F26 >0, or G27 = 0 and F27 >0, etc

If any return True, then True, otherwise False. So above G27 and F27 return True, so overall formula return true.

I would like to refer to the column rather than individual cells, as I have a large range to look at.

Hopefully that makes some sense!!

Thanks :)
 

Excel Facts

VLOOKUP to Left?
Use =VLOOKUP(A2,CHOOSE({1,2},$Z$1:$Z$99,$Y$1:$Y$99),2,False) to lookup Y values to left of Z values.
Try this formula in any cell
- it counts the number of times both conditions are met and returns true if one or more pairs satisfy the condition

=COUNTIFS(F:F,">0",G:G,0)>0
 
Last edited:
Upvote 0
Try using OR instead of AND and confirm the formula with CTRL+SHIFT+ENTER.

Or try COUNTIFS:

=COUNTIFS(G25:G30,0, F25:G30,">0")>0
 
Upvote 0
Oops, slight typo in the formula I posted.:eek:

Should be this.

=COUNTIFS(G25:G30,0, F25:F30,">0")>0
 
Upvote 0
Norie, thanks! That does work!! :)
That gives me a great starting point to piece this particular formula together, which now should be possible.

I don't suppose you could give me your thoughts on my second thread "IF Statement - need to reduce size drastically"?
 
Upvote 0
Try the formula with and without >0 at the end and answer your own question ;)
 
Upvote 0
Thanks! Makes sense now..

I've incorporated this into my new formula but it's not giving the result I was expecting;

=IF(AND(COUNTIFS(G24:G33,0, F24:F33,">0")=0,AND(SUM(F24:G33)<>0),AND(COUNTIF(I24:I33,">25%"))),"No new transactions or variances +25%",)

The first part = 0, the second part does not = 0, and the third part, there are no percentages over 25%. So it should return "No new transactions or variances +25%" but it's returning 0.

Can you possibly see where I am going wrong?
 
Last edited:
Upvote 0

Forum statistics

Threads
1,213,520
Messages
6,114,099
Members
448,548
Latest member
harryls

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top