Patchcord said:I'm looking to write a formula to satisfy two possible states:
=IF(OR(ISTEXT(C9,D9))
I need the formula to report a TRUE condition if text is present in either C9 or D9, but I keep getting an error. Does anyone have any thoughts?
Peter_SSs said:This gives FALSE for me with "" in C9 and "text" in D9 - see B9 below.Or:
=COUNTIF(C9:D9,"?*") > 1
The latter would ignore "".
...