In column A
Circular
null
Linear
null
In column B
null
l
null
c
I want, in Column C, Circular or Linear depending on the non null results from column A or B e.g.
Column C
Circular
Linear
Linear
Circular
I thought this would work:-
=IF(ISTEXT(LEFT(A4,1)),A4,IF(B4="c","Circular",IF(B4="l","Linear","")))
this only picks up the Column A result i.e. it shows null in C 2 and 4
if replaced with:-
=IF(B4="c","Circular",IF(B4="l","Linear",""))
I get Circular in C2 and Linear in C4, but of course null in C1 and C3
Why does my combined forumla not work? What logic am I missing?
Any advice please?