Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Add a third state

Status
Not open for further replies.

PaulColbert

Technical User
Sep 4, 2023
1
0
0
US
Hi,
I have this formula which pulls in the value of Cell N5.

=IF(AND(A1="Yes",B1="Yes",C1="Yes",D1="Yes"),N5,"")


Let imagine the value of N5 sits in Cell F1.
Am I able to rearrange this formula to add a third state to say "when all this is done put text in Cell E1 to say the word- 'Submitted'
Thanks in Advance
 
You can reply conditions from F1 in another IF formula:
[tt]=IF(AND(A1="Yes",B1="Yes",C1="Yes",D1="Yes"),"Submitted","")[/tt]
or continue chain:
[tt]=IF(F1<>"","Submitted","")[/tt]

combo
 
Paul said:
Let imagine the value of N5 sits in Cell F1.

Huh?

How about the value of N5 is in cell N5.

Also, how about doing Boolean logic wish Boolean values instead of text.
 
PaulColbert,
You need to re-state your requirements because your (current) formula creates an error:

IF_oqa1sc.png


Same sample data presenting your issue would be nice

---- Andy

"Hmm...they have the internet on computers now"--Homer Simpson
 
I assumed that the formula: [tt]=IF(AND(A1="Yes",B1="Yes",C1="Yes",D1="Yes"),N5,"")[/tt] is in F1 (Let imagine the value of N5 sits in Cell F1), next OP plans to conditionally fill E1 (when all this is done put text in Cell E1 to say the word- 'Submitted'). Looking at the later posts, OP should be more clear in describing the problem.

combo
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top