View Single Post
  #4   Report Post  
Posted to microsoft.public.excel.misc
SenorSteve SenorSteve is offline
external usenet poster
 
Posts: 2
Default Permanent Cell Formula?

Basically I have a several figures that are all divided by the same
number. However, the several figures aspect of the spreadsheet
changes quite frequently, and all of the figures will always be
divided by the same number. (eg, B4 {=5000 / A1}, B5 {=7000 /
A1}, ...etc.) However, when one goes to change a number (lets say
5000 from the aforementioned example), the user must type ' = 5500 /
A1'. The question was, is there was a way to streamline that to
where certain designated cells were always divided by said cell.
Hence, the user could just go through the spreadsheet and type '5500'
and the appropriate change is made.

I know I can decouple the implementation from the interface (sounds a
lot like a visitor pattern ;-) ), however that would require an
undesirable extra set of cells.




On May 14, 3:02 am, "Niek Otten" wrote:
Not sure what you mean, but instead of "=10*25" you can have a formula like "=A1*B1" and fill 10 in A1 and 25 in B1. You can
change A1 and B1 and get different results from the formula without changing the formula itself.

--
Kind regards,

Niek Otten
Microsoft MVP - Excel

"SenorSteve" wrote in oglegroups.com...

|I have a sheet that contains various functions which is updated
| regularly. The problem is, when updating, the formula never needs to
| be changed, only the number. I know it is possible to simply edit the
| number in the formula bar, but I was wondering if there was a way to
| "append" a formula to a certain cell, allowing the user to simply type
| in the number as they would a regular cell and not have to worry about
| altering the formula.
|
|
| Is this possible, or is it necessary to edit the number via the
| formula bar each time?
|