Is it possible to override a cell calculation (1 Viewer)

shenty

Registered User.
Local time
Today, 11:04
Joined
Jun 8, 2007
Messages
119
Is it possible for a cell to have a formula to calculate a default value based on other cells but for a user to be able to change this value WITHOUT losing the cells formula. ?
 

DanWall

Registered User.
Local time
Today, 11:04
Joined
Aug 11, 2008
Messages
78
I think I understand.....

You can't do it directly, however, you can add a "User Input" cell next to the calculating cell...

Then use an IF function to determine whether or not a user has entered any data into the input cell.

You could do it via VBA as well, however I like to stay clear of it whenever possible.

the function would look like this....

A1 is the Calculated Cell
A2 is the user input cell.

A1: IF(A2="",{calculation from other cells},A2)
 

shenty

Registered User.
Local time
Today, 11:04
Joined
Jun 8, 2007
Messages
119
hmmm good idea - that may help - thanks for that.
 

Users who are viewing this thread

Top Bottom