Search code examples
google-sheetsformulaspreadsheet

Combine two formula in one cell and get one result


Hi I have 2 formulas in google sheet that works great alone, but how can I put it together and get 1 result in the same cell, not side by side when we use "&"

Formula 1: =COUNTIFS(B1,"<>")*1-COUNTIFS(E1,"<>")*0 (when I have some text in cell B1 and E1 just count cell B1)

Formula 2: =(COUNTIFS(B1,"")*0+COUNTIFS(E1,"<>")*1) (when I have some text in cell E1 and B1 is blank just count cell E1)

Already tried: =COUNTIFS(B1,"<>")*1-COUNTIFS(E1,"<>")*0&(COUNTIFS(B1,"")*0+COUNTIFS(E1,"<>")*1) unwanted result: 1 1 in the same cell


Solution

  • try:

    =IF((B1<>"")*(E1<>""), 1, 
     IF((E1<>"")*(B1 =""), 1, 0))