Stop Excel from updating formula after a criteria is matched

前端 未结 3 765
悲哀的现实
悲哀的现实 2021-01-15 16:20

Is there a way to stop a formula from updating after a certain criteria is matched?

For example:

A1 = 1
B1 = \'=A1*2\'

Lets say thi

3条回答
  •  再見小時候
    2021-01-15 17:06

    You can use a circular reference. For example, in A2 I entered

    =IF(NOW() < C1,2*A1,A2)
    

    C1 has the value 6/24/2015 14:39

    I enable circular references underneath file > options > formulas. Prior to 2:39 my time I was able to change the value of A1 and see A2 change. That was 2 minutes ago (in my time zone). Now when I change A1 the value of A2 stays fixed.

提交回复
热议问题