How do I avoid repeating long formulas in Excel when working with comparisons?

前端 未结 3 1113
鱼传尺愫
鱼传尺愫 2020-12-17 06:42

I know that something like the following

=IF(ISERROR(LONG_FORMULA), 0, LONG_FORMULA)

can be replaced with

=IFERROR(LONG_FOR         


        
3条回答
  •  天命终不由人
    2020-12-17 07:27

    Comparing Ln Exp with SQRT ^2:-

    because SQRT(0) gives 0 but ln(0) gives #NUM!

    So you can choose which one to use depending whether you want the equality or not.

    These also work for negative numbers - in theory.

提交回复
热议问题