retain cell value

  • Thread starter Thread starter aekster
  • Start date Start date
A

aekster

What function to use to retain numerical cell value if ceratain
conditions are not met, otherwise calulate according to the formula?
 
aekster said:
What function to use to retain numerical cell value if ceratain
conditions are not met, otherwise calulate according to the formula?

Rewrite the formula, perhaps using an IF statement like this:
=IF(conditions, original_formula, fixed_value).
 
Back
Top