• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

Nesting formula help!

Hello! I need to nest a formula to return the word True or turn the statement to True if the cell is blank. This is what I have so far =IF(A2="A",B2="Apple",IF(A2="B",B2="Bat",IF(A2="A",B2="",IF(A2="B",B2="", TRUE)))) but it is returning False for the cell that are blank. I have attached a workbook. Please help!
 

Attachments

  • Nesting_Formula.xlsx
    9.1 KB · Views: 3
Rather than trying to understand your method, what's the goal? To check if value in col A is the first letter of col B?

=AND(A2<>"",LEFT(B2)=A2)
 
Rather than trying to understand your method, what's the goal? To check if value in col A is the first letter of col B?

=AND(A2<>"",LEFT(B2)=A2)
The method is to also return TRUE on Column C when Column B is blank. Your formula and mine are both returning False. I can't show the original file since I am working on a template provided by the employer. Can an ISNA formula be added to return the word TRUE when thee cell B is blank?
 
LAUNDER
=IF(AND(A2="";B2="");"";IF(OR(A2="";B2="");"";IF(AND(A2="A";B2="Apple");TRUE;IF(AND(A2="B";B2="Bat");TRUE;FALSE))))
 
Back
Top