retain cell value

A

aekster

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

Paul

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).
 
Top