Forum Discussion

Nigel_Lewis570202's avatar
Nigel_Lewis570202
Copper Contributor
Sep 02, 2022
Solved

Excel (SWITCH function?)

I wish to show a description next to a couple of sub-totals (e.g let us say that the sub-totals are in cells G50 & H50). I want the description in, say, cell D50 to show the wording "Profit" or "Loss" depending on whether G50 & H50 are both positive, both negative, or to show Profit/(Loss) if G50 is positive, and H50 is negative - or vice versa.

 

5 Replies

  • Nigel_Lewis570202 

    =IF(AND(G50>0,H50>0),"Profit",IF(AND(G50<0,H50<0),"Loss",IF(AND(G50>0,H50<0),"Profit/(Loss)",IF(AND(G50<0,H50>0),"(Loss)/Profit",""))))

    You can apply nested IF as well. An alternative besides SWITCH could be IFS.

     

    • Nigel_Lewis570202's avatar
      Nigel_Lewis570202
      Copper Contributor
      Danke sehr, Quadruple Pawn. I understand the logic of the nested "IF" statements, but they are more involved than I had hoped. Thanks again for your response.

Resources