What do I do? i did hide the 0s by checking the sum, is there a better way? Yes the arrayformula gives the cell a formula so isblank() returns false right?
i just want the m column to be empty if there are no input in k, l
i tried count but apparently it counted the nonempty cells in the column
=ArrayFormula(IF(AND(COUNT(K:K)=1,count(L:L)=1), K:K+L:L, ""))
thanks all in advance!
Formulas I tried: =ArrayFormula(IF(AND(TRIM(K:K)="",TRIM(L:L)=""), , K:K+L:L)) =ArrayFormula(IF(AND(K:K="", L:L=""), , K:K+L:L)) doesn't work
=ArrayFormula(IF(K:K="", , K:K+L:L)) works except L column numbers, how do I add L to the formula?
