Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
PutFormula
 
Posts: n/a
Default How do I move from a cell containing the formula TO a different c.

In EXCEL the comnputed value is normally placed in the cell that has the
formula in it. How can I place the result into another (different) cell?
  #2   Report Post  
biff
 
Posts: n/a
Default

Hi!

Did you see the replies to your same question from last
night?

You can't use a worksheet formula to assign a value to a
differenet cell. You can have a formula in cell A1 and
have that same value link to another cell. If you want the
same value in A1 to also populate cell D25, in D25 enter:

=A1

What you want to do can be done with VBA but that's a
whole different issue.

Biff

-----Original Message-----
In EXCEL the comnputed value is normally placed in the

cell that has the
formula in it. How can I place the result into another

(different) cell?
.

  #3   Report Post  
Gord Dibben
 
Posts: n/a
Default

Formulas return results only to the cell in which they are written.

Cannot change another cell's value.

Assuming formula in A1 returns "hoohah!"

In B1 enter =A1 to return "hoohah!"

OR use some type of event code to populate B1.

Private Sub Worksheet_Calculate()
Range("B1").Value = Range("A1").Value
End Sub

When calculation takes place B1 takes the value from A1 if A1 contains a
formula.

Right-click on the sheet tab and "View Code"

Copy/paste the event macro in there.


Gord Dibben Excel MVP

On Fri, 11 Feb 2005 10:03:02 -0800, "PutFormula"
wrote:

In EXCEL the comnputed value is normally placed in the cell that has the
formula in it. How can I place the result into another (different) cell?


Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Cell shows formula and not the result of the formula. stumpy1220 Excel Worksheet Functions 2 January 14th 05 05:11 PM
inserting data from a row to a cell, when the row number is specified by a formula in a cell [email protected] New Users to Excel 2 January 6th 05 07:18 AM
looking for a formula Amanda Excel Worksheet Functions 5 January 5th 05 07:37 AM
GET.CELL Biff Excel Worksheet Functions 2 November 24th 04 07:16 PM
Cell doesn't show formula result - it shows formula (CTRL + ' doe. o0o0o0o Excel Worksheet Functions 6 November 19th 04 03:13 PM


All times are GMT +1. The time now is 09:19 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"