Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
Ant Ant is offline
external usenet poster
 
Posts: 53
Default Reading from set Row/Column location

I am not an advanced user of this product and this question I think has a
simple answer, but all my research does not find a solution.

What I would like to achieve;
I am attempting to get a cell on Sheet 1 to read the contents of a
particular Row/Column cell on Sheet 2 with out it being dependant on the
particular cell.

Discussion;
This might appear simple to some but my ending condition is what defeats me.
I want the Sheet1 cell to only read from for example Row1/Column1 of sheet2.
So for example if I insert a column later into the first column location on
Sheet2 the original cell that was targeted for reading effectively is moved
to column2. Now under normal formulas the sheet1 cell will follow the
original cell to its new location and will now read from Row1/Column2.

However I actually want the Sheet1 cell to only ever read the contents from
Row1/Column1 regardless of what formatting or insertions occurs on Sheet2.

This is where my efforts collapse.

I would greatly appreciate if any one has any suggestions on how to achieve
this. I have an feeling the answer is simple and I am just not seeing it.

Thanks
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 15,768
Default Reading from set Row/Column location

Try this:

=INDIRECT("Sheet2!A1")

That will *always* refer to Sheet2 A1.

--
Biff
Microsoft Excel MVP


"Ant" wrote in message
...
I am not an advanced user of this product and this question I think has a
simple answer, but all my research does not find a solution.

What I would like to achieve;
I am attempting to get a cell on Sheet 1 to read the contents of a
particular Row/Column cell on Sheet 2 with out it being dependant on the
particular cell.

Discussion;
This might appear simple to some but my ending condition is what defeats
me.
I want the Sheet1 cell to only read from for example Row1/Column1 of
sheet2.
So for example if I insert a column later into the first column location
on
Sheet2 the original cell that was targeted for reading effectively is
moved
to column2. Now under normal formulas the sheet1 cell will follow the
original cell to its new location and will now read from Row1/Column2.

However I actually want the Sheet1 cell to only ever read the contents
from
Row1/Column1 regardless of what formatting or insertions occurs on Sheet2.

This is where my efforts collapse.

I would greatly appreciate if any one has any suggestions on how to
achieve
this. I have an feeling the answer is simple and I am just not seeing it.

Thanks



  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 8,520
Default Reading from set Row/Column location

Use INDIRECT

=INDIRECT("Sheet2!A1")
--
If this post helps click Yes
---------------
Jacob Skaria


"Ant" wrote:

I am not an advanced user of this product and this question I think has a
simple answer, but all my research does not find a solution.

What I would like to achieve;
I am attempting to get a cell on Sheet 1 to read the contents of a
particular Row/Column cell on Sheet 2 with out it being dependant on the
particular cell.

Discussion;
This might appear simple to some but my ending condition is what defeats me.
I want the Sheet1 cell to only read from for example Row1/Column1 of sheet2.
So for example if I insert a column later into the first column location on
Sheet2 the original cell that was targeted for reading effectively is moved
to column2. Now under normal formulas the sheet1 cell will follow the
original cell to its new location and will now read from Row1/Column2.

However I actually want the Sheet1 cell to only ever read the contents from
Row1/Column1 regardless of what formatting or insertions occurs on Sheet2.

This is where my efforts collapse.

I would greatly appreciate if any one has any suggestions on how to achieve
this. I have an feeling the answer is simple and I am just not seeing it.

Thanks

  #4   Report Post  
Posted to microsoft.public.excel.misc
Max Max is offline
external usenet poster
 
Posts: 9,221
Default Reading from set Row/Column location

In say, Sheet2,

Place this in any start cell, eg in B2,
then copy across/fill down as far as required:
=OFFSET(Sheet1!$A$1,ROWS($1:1)-1,COLUMNS($A:A)-1)
The above will always link to whats within the corresponding range covered
in the source Sheet1, with top left anchor cell A1, regardless of new row/col
insertions in Sheet1. Try it out and convince yourself. Adapt the
sheetname/anchor cell (ie the "Sheet1!$A$1" part in the expression) to suit
the source range that you want to link.

Success? Click YES button below
--
Max
Singapore
http://savefile.com/projects/236895
Downloads:25,000 Files:370 Subscribers:68
xdemechanik
---
"Ant" wrote:
I am not an advanced user of this product and this question I think has a
simple answer, but all my research does not find a solution.

What I would like to achieve;
I am attempting to get a cell on Sheet 1 to read the contents of a
particular Row/Column cell on Sheet 2 with out it being dependant on the
particular cell.

Discussion;
This might appear simple to some but my ending condition is what defeats me.
I want the Sheet1 cell to only read from for example Row1/Column1 of sheet2.
So for example if I insert a column later into the first column location on
Sheet2 the original cell that was targeted for reading effectively is moved
to column2. Now under normal formulas the sheet1 cell will follow the
original cell to its new location and will now read from Row1/Column2.

However I actually want the Sheet1 cell to only ever read the contents from
Row1/Column1 regardless of what formatting or insertions occurs on Sheet2.

This is where my efforts collapse.

I would greatly appreciate if any one has any suggestions on how to achieve
this. I have an feeling the answer is simple and I am just not seeing it.

Thanks

  #5   Report Post  
Posted to microsoft.public.excel.misc
Max Max is offline
external usenet poster
 
Posts: 9,221
Default Reading from set Row/Column location

It should have read the other way around, sorry. Your source sheet is Sheet2.
Just change the sheetname in the expression to: Sheet2!$A$1, and you can
use/propagate it easily in Sheet1.
--
Max
Singapore
http://savefile.com/projects/236895
Downloads:25,000 Files:370 Subscribers:68
xdemechanik
---

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
Looking up 3 cells based on defined value in a row/column location Steve Excel Worksheet Functions 4 June 15th 07 07:40 PM
Finding the location of MAX value in column milly Excel Discussion (Misc queries) 2 May 11th 07 12:15 PM
Location of the Last cell in a column containing data Diggs Excel Discussion (Misc queries) 1 January 27th 06 09:09 PM
find location max value in column rroach Excel Discussion (Misc queries) 3 July 13th 05 10:27 PM
How do I change location of figures within a column 1911dan Excel Worksheet Functions 1 January 6th 05 04:03 PM


All times are GMT +1. The time now is 03:27 PM.

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

About Us

"It's about Microsoft Excel"