Forum Discussion

Rsanjuan's avatar
Rsanjuan
Advocate III
9 years ago
Solved

Division calculation with a condition

I am looking to creat a column by calculating two columns only if one column has a number.  For example below:     I only want to calculate Market Share if SA Market = 1 or anyother number. ...
  • Greg_Deckler's avatar
    9 years ago

    General syntax for your last column:

     

    Market Share = IF([Difference] = 0,"-",SOME CALCULATION)

    You would replace SOME CALCULATION with your desired calculation.