Need help with a conditional formula

Dsheaff

New Member
Joined
Aug 14, 2018
Messages
33
As follows:

If cells J56 and N56 are not blank then return the value posted in cell E72 only if cell E11 on the worksheet identified as "Candidate Selection" equals the alpha character "C" and cell G11 is not blank, otherwise return a blank cell


Tanks in advance for the assistance
 

Excel Facts

Format cells as date
Select range and press Ctrl+Shift+3 to format cells as date. (Shift 3 is the # sign which sort of looks like a small calendar).
Code:
=if(and(j56<>"",n56<>"",g11<>"",e11="c"),e72,"")
 
Upvote 0
Try
Code:
=IF(AND(J56<>"",N56<>"",'Candidate Selection'!E11="c",'Candidate Selection'!G11<>""),E72,"")
 
Upvote 0
So, if I understand you correctly, all these conditions must be met:
- J56 not blank
- N56 not blank
- E11 on "Candidate Selection" sheet = "C"
- G11 on "Candidate Selection" sheet not blank
If all those conditions are met, return the value from E72, else return nothing.

If that is correct, then try:
Code:
=IF(AND(J56<>"",N56<>"",'Candidate Selection'!E11="C",'Candidate Selection'!G11<>""),E72,"")


EDIT: Too slow once again, and Scott beat me to it!
 
Last edited:
Upvote 0
Don't think you're too slow Joe4, think you were just typing a lot more...
:wink:
And slowly (I knew I should have taken more typing classes)!
The half-year I took in 8th grade wasn't quite enough!
 
Upvote 0
Back in the days, I was my High School Typing Champion, 64 wpm on a Manual (yes, the real manual ones, with the lever strike at every key press, and manual carriage returns).
Then later years, tested myself with an Electric (the Ball kind) and got 130+ wpm, years later, tested myself again on a computer keyboard and got 200+ wpm.
But that was decades ago...

Edit: in case you forget, 5 keystrokes = 1 word, based on a 5 minutes test, and no more than 5 errors total.
 
Last edited:
Upvote 0
Hello and thanks for the prompt response. I've posted the code provided and there appears to be a problem with the way I identified the issue as relates to cells E11 and G11. The code should be structured such that if either E11 or G11 is not blank that element of the condition is met. If you could please make that adjustment to the code you provided it would be greatly appreciated.

Thanks again..Greatly Appreciated!
 
Upvote 0
Try:
Code:
=IF(AND(J56<>"",N56<>"",OR('Candidate Selection'!E11<>"",'Candidate Selection'!G11<>"")),E72,"")
 
Upvote 0

Forum statistics

Threads
1,216,101
Messages
6,128,841
Members
449,471
Latest member
lachbee

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