Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 26
Default Target cell reference moves when target is cut and pasted

In cell A1 type =B1
now in B1 type the number 10.
A1 looks at B1 and shows the value 10.
If I then cut the contents of B1 and Paste them into C1, A1 will still show
the value 10 and the formula has changed to =C1.
My question is how do I make 100% sure that the formula I put into cell A1
will always look at B1 regardless of cutting and pasting actions in the
target reference cell. Please note before answering putting $ in front of the
formula eg =$B$1 makes no difference the formula wil just become =$C$1. Thank
you for your assistance in advance.

  #2   Report Post  
Posted to microsoft.public.excel.misc
hmm hmm is offline
external usenet poster
 
Posts: 175
Default Target cell reference moves when target is cut and pasted

Use copy and paste instead of cut and paste.

"Illya Teideman" wrote:

In cell A1 type =B1
now in B1 type the number 10.
A1 looks at B1 and shows the value 10.
If I then cut the contents of B1 and Paste them into C1, A1 will still show
the value 10 and the formula has changed to =C1.
My question is how do I make 100% sure that the formula I put into cell A1
will always look at B1 regardless of cutting and pasting actions in the
target reference cell. Please note before answering putting $ in front of the
formula eg =$B$1 makes no difference the formula wil just become =$C$1. Thank
you for your assistance in advance.

  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 26
Default Target cell reference moves when target is cut and pasted

That does not answer my question. That is the sensible thing to do yes but I
need to ensure that whatever happens to the target cell that the formula
always points in that reference including if the data is cut and pasted. I
suspect the answer will be in the formula rather than the process used to get
the data from one cell to another as that is something I cannot control. This
is for a form that will be used by data entry.

"hmm" wrote:

Use copy and paste instead of cut and paste.

"Illya Teideman" wrote:

In cell A1 type =B1
now in B1 type the number 10.
A1 looks at B1 and shows the value 10.
If I then cut the contents of B1 and Paste them into C1, A1 will still show
the value 10 and the formula has changed to =C1.
My question is how do I make 100% sure that the formula I put into cell A1
will always look at B1 regardless of cutting and pasting actions in the
target reference cell. Please note before answering putting $ in front of the
formula eg =$B$1 makes no difference the formula wil just become =$C$1. Thank
you for your assistance in advance.

  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 1
Default Target cell reference moves when target is cut and pasted

.... In cell A1 type =INDIRECT("B1")

"Illya Teideman" wrote in message
...
That does not answer my question. That is the sensible thing to do yes but
I
need to ensure that whatever happens to the target cell that the formula
always points in that reference including if the data is cut and pasted. I
suspect the answer will be in the formula rather than the process used to
get
the data from one cell to another as that is something I cannot control.
This
is for a form that will be used by data entry.

"hmm" wrote:

Use copy and paste instead of cut and paste.

"Illya Teideman" wrote:

In cell A1 type =B1
now in B1 type the number 10.
A1 looks at B1 and shows the value 10.
If I then cut the contents of B1 and Paste them into C1, A1 will still
show
the value 10 and the formula has changed to =C1.
My question is how do I make 100% sure that the formula I put into cell
A1
will always look at B1 regardless of cutting and pasting actions in the
target reference cell. Please note before answering putting $ in front
of the
formula eg =$B$1 makes no difference the formula wil just become =$C$1.
Thank
you for your assistance in advance.



  #5   Report Post  
Posted to microsoft.public.excel.misc
hmm hmm is offline
external usenet poster
 
Posts: 175
Default Target cell reference moves when target is cut and pasted

How about typing into A1 =INDIRECT("b1"). A1 will always refer to B1, even
if B1's contents are moved or, sometimes problematically, even if rows or
columns are added before B1. In your example, if a single column is added to
the left of column B, you will get a circular reference. Will that work for
you?

"Illya Teideman" wrote:

That does not answer my question. That is the sensible thing to do yes but I
need to ensure that whatever happens to the target cell that the formula
always points in that reference including if the data is cut and pasted. I
suspect the answer will be in the formula rather than the process used to get
the data from one cell to another as that is something I cannot control. This
is for a form that will be used by data entry.

"hmm" wrote:

Use copy and paste instead of cut and paste.

"Illya Teideman" wrote:

In cell A1 type =B1
now in B1 type the number 10.
A1 looks at B1 and shows the value 10.
If I then cut the contents of B1 and Paste them into C1, A1 will still show
the value 10 and the formula has changed to =C1.
My question is how do I make 100% sure that the formula I put into cell A1
will always look at B1 regardless of cutting and pasting actions in the
target reference cell. Please note before answering putting $ in front of the
formula eg =$B$1 makes no difference the formula wil just become =$C$1. Thank
you for your assistance in advance.



  #6   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 26
Default Target cell reference moves when target is cut and pasted

Excellent thank you that seems to do the trick

"hmm" wrote:

How about typing into A1 =INDIRECT("b1"). A1 will always refer to B1, even
if B1's contents are moved or, sometimes problematically, even if rows or
columns are added before B1. In your example, if a single column is added to
the left of column B, you will get a circular reference. Will that work for
you?

"Illya Teideman" wrote:

That does not answer my question. That is the sensible thing to do yes but I
need to ensure that whatever happens to the target cell that the formula
always points in that reference including if the data is cut and pasted. I
suspect the answer will be in the formula rather than the process used to get
the data from one cell to another as that is something I cannot control. This
is for a form that will be used by data entry.

"hmm" wrote:

Use copy and paste instead of cut and paste.

"Illya Teideman" wrote:

In cell A1 type =B1
now in B1 type the number 10.
A1 looks at B1 and shows the value 10.
If I then cut the contents of B1 and Paste them into C1, A1 will still show
the value 10 and the formula has changed to =C1.
My question is how do I make 100% sure that the formula I put into cell A1
will always look at B1 regardless of cutting and pasting actions in the
target reference cell. Please note before answering putting $ in front of the
formula eg =$B$1 makes no difference the formula wil just become =$C$1. Thank
you for your assistance in advance.

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
Go to target cell Ed Excel Discussion (Misc queries) 3 May 3rd 06 11:47 PM
maintain references when target cell moves? William DeLeo Excel Discussion (Misc queries) 6 March 2nd 06 07:55 PM
Target cell=range?? alexsmalley Excel Discussion (Misc queries) 2 October 6th 05 04:49 PM
Target value, Next cell D.Parker Excel Discussion (Misc queries) 3 May 4th 05 09:00 PM
Confirm target cell is equal Pat Excel Discussion (Misc queries) 2 December 8th 04 09:35 PM


All times are GMT +1. The time now is 10:45 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"