View Single Post
  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Bernard Liengme Bernard Liengme is offline
external usenet poster
 
Posts: 4,393
Default Linking cells between sheets

Why not =INDIRECT("Data!A2") ?
--
Bernard V Liengme
www.stfx.ca/people/bliengme
remove caps from email

"Gary''s Student" wrote in message
...
=INDIRECT("Data!" & "A" & "2")


will always pickup cell A2 on sheet Date, no matter what row/columns have
been inserted/deleted.
--
Gary''s Student
gsnu200710


"John" wrote:

Example: Sheet1 has master data which is linked to various other
'working'
sheets in the same workbook. In practice, the master data has to be
moved
around regularly, using cut and paste. Each time this happens, Excel
moves
the reference in the 'working' sheet, which is not what is required.
All I want to do (for example) is make sure that cell A8 in the working
sheet ALWAYS equals cell A2 in the master sheet - even if I have cut and
pasted the data in A2 on the master sheet to another location. I have
tried
=Data!A2 and =Data!$A$2 to no avail.

Is there any way to 'lock' the referenced cell (Working A8) to the master
cell (A2).

Help much appreciated.