Excel formula question - sending results to another cell

  • Thread starter Thread starter jeremy.a.williams
  • Start date Start date
J

jeremy.a.williams

I'm trying to create a formula in one cell (let's say C3), and I want
the results of that cell to show up in B3. Is there a way to have the
results of the formula in C3 show up in B3 without having to put "=C3"
in my B3 Cell?
 
Formulas can only "pull" data not "push" it.

You would need VBA code to populate B3 without a formula.


Gord Dibben MS Excel MVP
 
I suppose you could create a macro, but generally speaking if you want the
value in one cell to be dependent upon the value in another, the way to do it
is entering the second cell reference in the first cell; i.e., =C3 in B3.
Why would you want to make it harder?

Dave
 
You can only pull data. You can't push data. (Remember PEEK & POKE
anyone?)

Regards.

Bill Ridgeway
Computer Solutions
 
Thanks for all your help!

The purpose behind the question is that I'm creating a document that
others will be working on and I figured there would be less chance of
some formulas being deleted if I could hide the formulas and push the
data to other cells.

- Jeremy
 
That's what sheet protection is for. Set the cells in which your users will
enter data to unlocked then protect the sheet. Use a password if necessary
then the formulae will be relatively safe.
 

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

Back
Top