Hi, I'm sorry the title sound weird,
I need to use various formulas (or one long formula) with conditional formatting and this is the scenario.
I need to display different message if some condition match.
i have 3 dates and range that sometime have string sometime is blank
Date1 -> Cell G12
Date2 -> Cell P12
Date3 -> Cell C12
String -> I12:M12
I know that i need to use logical IF AND but i don't really know how to add the range when is blank or >0 (sorry)
This is what i need :
Note: i need to display my message in cell I14
If I12:M12 >0 and DATE1 no match But DATE2+DATE3 match "mymessage1"
If I12:M12 is blank and DATE1 no match But DATE2+DATE3 match "mymessage2"
If I12:M12 >0 and DATE1+DATE2 match But DATE3 not match "mymessage3"
This is the formula that i'm using and i need to replace:
Thanks you so much
I need to use various formulas (or one long formula) with conditional formatting and this is the scenario.
I need to display different message if some condition match.
i have 3 dates and range that sometime have string sometime is blank
Date1 -> Cell G12
Date2 -> Cell P12
Date3 -> Cell C12
String -> I12:M12
I know that i need to use logical IF AND but i don't really know how to add the range when is blank or >0 (sorry)
This is what i need :
Note: i need to display my message in cell I14
If I12:M12 >0 and DATE1 no match But DATE2+DATE3 match "mymessage1"
If I12:M12 is blank and DATE1 no match But DATE2+DATE3 match "mymessage2"
If I12:M12 >0 and DATE1+DATE2 match But DATE3 not match "mymessage3"
This is the formula that i'm using and i need to replace:
Rich (BB code):
=IF(AND(G12=P12,P12=C12),"message1","message2")
Thanks you so much