Travisallen2007

New Member
Joined
Jan 21, 2018
Messages
30
Office Version
  1. 365
I need a formula that will sum several cells in different tabs, but i need it to evaluate the cell F3 for it they are qualified on each tab before assigning points. If it says not qualified in any of the four tabs f3 column, i need it to say Disqualified. I was using this IF statement but it (For obvious reasons) doesnt find if there is more than one contingency. Only if F3 says No - Qualified, it should sum the remaining fields. They could have a Yes - Disqualified in any of the four tabs and need it to say that they are Disqualified.


=IF('Month 1'!F3="No - Qualified",'Month 1'!G3+'Month 2'!G3+'Month 3'!G3+'Month 4'!G3,"Disqualified")

thanks for the help!
 

Excel Facts

Using Function Arguments with nested formulas
If writing INDEX in Func. Arguments, type MATCH(. Use the mouse to click inside MATCH in the formula bar. Dialog switches to MATCH.
Try this instead, using AND to test that multiple conditions evaluate to TRUE:

=IF(AND('Month 1'!F3="No - Qualified",'Month 2'!F3="No - Qualified",'Month 3'!F3="No - Qualified",'Month 4'!F3="No - Qualified"),'Month 1'!G3+'Month 2'!G3+'Month 3'!G3+'Month 4'!G3,"Disqualified")
 
Upvote 0
Try this instead, using AND to test that multiple conditions evaluate to TRUE:

=IF(AND('Month 1'!F3="No - Qualified",'Month 2'!F3="No - Qualified",'Month 3'!F3="No - Qualified",'Month 4'!F3="No - Qualified"),'Month 1'!G3+'Month 2'!G3+'Month 3'!G3+'Month 4'!G3,"Disqualified")


This is perfect - I was just looking at another thread about And formulas! Thank you so much!
 
Upvote 0
Hi Guys,

Good Morning!
I need your help to provide a formula for this scenario:

1. I have 2 sheets as source of data namely: Import & Export
2. I want to use the Export sheet as data source
3. I created a drop down list of the choices.

Q: What is the formula that will automatically change the table array when I chose either of the data source sheets?

Hoping for your kind help.

Thanks,
Luaptar
 
Upvote 0

Forum statistics

Threads
1,213,536
Messages
6,114,213
Members
448,554
Latest member
Gleisner2

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