Forum Discussion

toyawallace's avatar
toyawallace
Copper Contributor
Mar 25, 2020

Formula assistance (IF Statment)

I have 3 columns: Column A has numeric values Column B has numeric values and empty cells.  Column C is there to calc Columns A and B.  I'm able to return a value between Columns A and B, if numeric values are present.  I'd like to turn 0 or nothing in Column C, if Column B is empty.

 

  • toyawallace 

    You still have no data in columns you described in the latest file you uploaded.

    Anyways, try one of the following formula depending which column actually contain the data.

    =IF(ISNUMBER(B16),IF(B16>=0,B16-A16,0),0)

    OR

    =IF(ISNUMBER(N16),IF(N16>=0,O16-N16,0),0)

    OR

    =IF(ISNUMBER(B8),B8-A8,0)

    OR

    =IF(ISNUMBER(N16),O16-N16,0)

    See which formula returns the desired output.

Share