G Guest Dec 28, 2004 #1 can a cell be multi-functional, IE accept user input data or formula generated data without loosing the formula in the cell?
can a cell be multi-functional, IE accept user input data or formula generated data without loosing the formula in the cell?
D Dave Peterson Dec 28, 2004 #2 No. When I want to allow the user to supersede the formula's result, I use 3 cells. The formula cell (evaluates to the default value) the override cell (for manual input) the cell that's used. For instance: I'd put the formula in A1, the override value in B1 and use this in C1: =if(c1<>a1,c1,a1) Lock columns A and C and protect the worksheet. Then I could use column C in any subsequent formulas.
No. When I want to allow the user to supersede the formula's result, I use 3 cells. The formula cell (evaluates to the default value) the override cell (for manual input) the cell that's used. For instance: I'd put the formula in A1, the override value in B1 and use this in C1: =if(c1<>a1,c1,a1) Lock columns A and C and protect the worksheet. Then I could use column C in any subsequent formulas.