Can a formula place a value in another cell

D

default105

with excel 2000, can a formula place a value in another cell or can this only
be done with vba or a macro
 
D

Dave Peterson

Functions called from cells on worksheets can only return values to that cell
(with very minor exceptions).

You may want to look at worksheet/workbook/application events that will touch
other cells.
 
F

FSt1

hi
no. a formula can only return values to the cell in which it resides. it can
not put values in other cells nor can it perform actions. only macro code can
do this.
sorry.
regards
FSt1
 
D

Don Guillett

A formula may not do that but you can use =a1 to get the data in a1.
However, you may use a worksheet_change event macro in the sheet module that
when a1 is changed will do whatever is desired to the other cell.
 
D

default105

Since my workbook is formula driven based on one cell on one worksheet and
the value I need to change resides on another worksheet, what event would be
better to use. This one cell changes the data on 12 worksheets.
--
Pete Blackburn - words to live by:
"Don''t ever let somebody tell you. You can''t do something.You got a
dream,You gotta protect it." Edited Quote from the Pursuit Of Happiness
 
D

Don Guillett

As I said, a worksheet change event. Right click the sheet tab>view
code>>>>>
If all else fails
If desired, send your file to my address below along with this msg and
a clear explanation of what you want and before/after examples.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top