If statement issues

ashleym8

New Member
Joined
Jun 7, 2011
Messages
1
I have an if statment with mulitple criteria. One of the if statements in my formula I need to have this if statement in it..

if(h2=(“2a”,"1A","1B","1D", "1G","1H","1I","1J"),0,1

here is the whole if statement that i need to add the above too.

=IF(A2="",0,IF(E2="CL",0,IF(P2<650,0,IF(IFERROR(VALUE(G2),0)>0,0,IF(Q2="n",0,IF(R2="n",0,IF(I2=52,0,IF(S2<>"",0,IF(J2<>"No relationships",0,1))))))))+IF(T2>0,1,0))


Any suggestions?
 

Excel Facts

What is =ROMAN(40) in Excel?
The Roman numeral for 40 is XL. Bill "MrExcel" Jelen's 40th book was called MrExcel XL.
Hi,

If you use 2003 this won't work as you are limited to seven nested IF's


George

I have an if statment with mulitple criteria. One of the if statements in my formula I need to have this if statement in it..

if(h2=(“2a”,"1A","1B","1D", "1G","1H","1I","1J"),0,1

here is the whole if statement that i need to add the above too.

=IF(A2="",0,IF(E2="CL",0,IF(P2<650,0,IF(IFERROR(VALUE(G2),0)>0,0,IF(Q2="n",0,IF(R2="n",0,IF(I2=52,0,IF(S2<>"",0,IF(J2<>"No relationships",0,1))))))))+IF(T2>0,1,0))


Any suggestions?
 
Upvote 0
All the conditions that your looking for that will evaluate to 0 you should wrap in an
=if(Or(,,,,,,,,,,,),0,IF(then the other conditions here,"")
 
Upvote 0

Forum statistics

Threads
1,224,521
Messages
6,179,275
Members
452,902
Latest member
Knuddeluff

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