How to copy the value of a cell in Excel to a new location?

  • Thread starter Thread starter Adel Makram
  • Start date Start date
  • Tags Tags
    Cell Excel Value
Click For Summary

Discussion Overview

The discussion revolves around methods for copying values from one cell to another in Excel, specifically how to dynamically link cells so that updates in one cell reflect in others. Participants also explore sorting values in a column automatically as they change, with a focus on maintaining corresponding data in adjacent columns.

Discussion Character

  • Technical explanation
  • Conceptual clarification
  • Debate/contested

Main Points Raised

  • Some participants propose using the formula "=A1" in cell C1 to copy the value from A1, while others suggest using the absolute reference formula "=$A$1" to ensure that all cells in column C reflect the value of A1.
  • There is a request for clarification on how to fill cells C2, C3, etc., without manually entering the formula in each cell, with one participant suggesting copying and pasting the formula from C1.
  • Participants discuss the need to sort a column of numbers from greatest to smallest while keeping associated data in adjacent columns aligned, with some suggesting that a VB macro may be necessary for automatic sorting.
  • Concerns are raised about the complexity of using a VB macro, particularly regarding the need for it to run automatically when cell values change.

Areas of Agreement / Disagreement

There is no consensus on the best method for automatic sorting of columns, with some participants suggesting VB macros while others express uncertainty about the implementation. The method for copying values from A1 to C1 and beyond appears to have some agreement, but details on filling subsequent cells remain contested.

Contextual Notes

Participants express uncertainty about the implications of using different formulas and methods, particularly regarding the automatic updating of sorted values and the complexity of implementing macros.

Adel Makram
Messages
632
Reaction score
15
Suppose I apply a particular function and I get a value of the cell-A1. How can I copy this value to another cell-C1 and the entire column under C1 to use it in a new operation provided that C1 and the entire column are always updated when A1 changes?
 
Computer science news on Phys.org
Adel Makram said:
Suppose I apply a particular function and I get a value of the cell-A1. How can I copy this value to another cell-C1 and the entire column under C1 to use it in a new operation provided that C1 and the entire column are always updated when A1 changes?
Just make the value of C1 be "=A1"
 
Adel Makram said:
Suppose I apply a particular function and I get a value of the cell-A1. How can I copy this value to another cell-C1 and the entire column under C1 to use it in a new operation provided that C1 and the entire column are always updated when A1 changes?
It's not clear what you're asking here with regard to this part: "and the entire column under C1 to use it in a new operation provided that C1 and the entire column are always updated when A1 changes?"
@phinds's suggestion is fine for copying the value in A1 to C1. Can you be more clear about what is supposed to go in cells C2, C3, and so on?
 
Mark44 said:
It's not clear what you're asking here with regard to this part: "and the entire column under C1 to use it in a new operation provided that C1 and the entire column are always updated when A1 changes?"
@phinds's suggestion is fine for copying the value in A1 to C1. Can you be more clear about what is supposed to go in cells C2, C3, and so on?
For example, suppose there is a function F(x) which yields a number on C1. I need to copy this number over the entire column under C1, namely C2, C3,,, etc without repeated typing (=C1) over and over for each cell under C. Is there a way to do that in one shot? Dragging the small box in C1 over the entire column may or may not get the same value as this depends on the way the excel sheet is formed and also this would be time consuming if I have many columns to copy. So I need to update the entire column immediately once the new value of C1 is updated.
 
Let me rephrase what you wrote slightly, to align with what you said earlier.
suppose there is a function F(x) which yields a number on A1. I need to copy this number over the entire column under C1, namely C2, C3,,, etc without repeated typing (=C1)
In cell C1 put this formula: =$A$1
Now select (highlight) cell C1 and press [CTRL]C (to copy that formula)
Select cells C2 and however many cells you want to copy this formula to.
Press [CTRL]V (to paste the copied formula.

Cells C1, C2, ... should all now display the value that's in cell A1.

If you change the value in A1, the cells that you have copied the formula to should now show the new value in A1.
 
  • Like
Likes   Reactions: Adel Makram
Mark44 said:
Let me rephrase what you wrote slightly, to align with what you said earlier.

In cell C1 put this formula: =$A$1
Now select (highlight) cell C1 and press [CTRL]C (to copy that formula)
Select cells C2 and however many cells you want to copy this formula to.
Press [CTRL]V (to paste the copied formula.

Cells C1, C2, ... should all now display the value that's in cell A1.

If you change the value in A1, the cells that you have copied the formula to should now show the new value in A1.
wow, it works. Thank you. May I ask one more question?
 
I have a column and I need to sort its value (numbers) from the greatest to the smallest. In addition, I need the extension (nominal or words) of the column next to the first one to be sorted too in the corresponding order. How to do this sorting automatically once the values of the column are updated to new values? I know I can do sort but I need to save time and to be done automatically.
 
Adel Makram said:
I have a column and I need to sort its value (numbers) from the greatest to the smallest. In addition, I need the extension (nominal or words) of the column next to the first one to be sorted too in the corresponding order. How to do this sorting automatically once the values of the column are updated to new values? I know I can do sort but I need to save time and to be done automatically.
The only way I can think that you can get the values in the column sorted is to write a VB macro to do it. That's a lot more complicated than what you wanted to do before. Maybe someone else will have some ideas.
 
Mark44 said:
The only way I can think that you can get the values in the column sorted is to write a VB macro to do it. That's a lot more complicated than what you wanted to do before. Maybe someone else will have some ideas.
I was thinking the same thing. Even w/ a VB macro you have to have some facility to cause the macro to run if any of the cells change. That's probably doable given how sophisticated the Excel object model is but I don't know the method. This assume of course that you don't want to have to click a control to make the change.
 

Similar threads

  • · Replies 4 ·
Replies
4
Views
3K
  • · Replies 5 ·
Replies
5
Views
2K
  • · Replies 10 ·
Replies
10
Views
3K
  • · Replies 5 ·
Replies
5
Views
2K
  • · Replies 1 ·
Replies
1
Views
2K
  • · Replies 4 ·
Replies
4
Views
3K
  • · Replies 4 ·
Replies
4
Views
1K
  • · Replies 1 ·
Replies
1
Views
3K
Replies
27
Views
4K
  • · Replies 6 ·
Replies
6
Views
2K