PC Review


Reply
Thread Tools Rate Thread

Absolute Reference (again)

 
 
LCC Jon-Kun
Guest
Posts: n/a
 
      17th Dec 2007
First time posting here, but a question that most of you will probably have
heard before.

I'm trying to sort out a formula which involves taking data from one sheet
in the work book and using it on another sheet. Say for example, Sheet1 and
Sheet2.

The data I want in Sheet1 is all on row 17, but I want to use this on column
B in Sheet2

The formula I currently have is
B1 =+Sheet1'A17
when I try to copy this down column B, it turns into
B2 =+Sheet1'A18
B3 =+Sheet1'A19

I tried adding an absolute value on the 17, ie
B1 =+Sheet1'A$17
and copying down, but end up with
B2 =+Sheet1'A$17
B3 =+Sheet1'A$17

What I'm after is
B2 =+Sheet1'B$17
B3 =+Sheet1'C$17
etc etc etc
preferably without resorting to VBA or macros. I know it's possible to do if
you're going down the row instead of across, but I can't figure this out! ANy
help would be greatly appreciated.
 
Reply With Quote
 
 
 
 
Bob Phillips
Guest
Posts: n/a
 
      17th Dec 2007
Try this

=INDIRECT("'Sheet1'!"&ADDRESS(17,ROW(A2)))

--
HTH

Bob

(there's no email, no snail mail, but somewhere should be gmail in my addy)

"LCC Jon-Kun" <LCC Jon-(E-Mail Removed)> wrote in message
news:C98C9C64-FCCD-4288-A7AA-(E-Mail Removed)...
> First time posting here, but a question that most of you will probably
> have
> heard before.
>
> I'm trying to sort out a formula which involves taking data from one sheet
> in the work book and using it on another sheet. Say for example, Sheet1
> and
> Sheet2.
>
> The data I want in Sheet1 is all on row 17, but I want to use this on
> column
> B in Sheet2
>
> The formula I currently have is
> B1 =+Sheet1'A17
> when I try to copy this down column B, it turns into
> B2 =+Sheet1'A18
> B3 =+Sheet1'A19
>
> I tried adding an absolute value on the 17, ie
> B1 =+Sheet1'A$17
> and copying down, but end up with
> B2 =+Sheet1'A$17
> B3 =+Sheet1'A$17
>
> What I'm after is
> B2 =+Sheet1'B$17
> B3 =+Sheet1'C$17
> etc etc etc
> preferably without resorting to VBA or macros. I know it's possible to do
> if
> you're going down the row instead of across, but I can't figure this out!
> ANy
> help would be greatly appreciated.



 
Reply With Quote
 
RagDyeR
Guest
Posts: n/a
 
      17th Dec 2007
Enter *anywhere* and copy down:

=INDEX(Sheet1!$17:$17,ROWS($1:1))
--

HTH,

RD
=====================================================
Please keep all correspondence within the Group, so all may benefit!
=====================================================


"LCC Jon-Kun" <LCC Jon-(E-Mail Removed)> wrote in message
news:C98C9C64-FCCD-4288-A7AA-(E-Mail Removed)...
First time posting here, but a question that most of you will probably have
heard before.

I'm trying to sort out a formula which involves taking data from one sheet
in the work book and using it on another sheet. Say for example, Sheet1 and
Sheet2.

The data I want in Sheet1 is all on row 17, but I want to use this on column
B in Sheet2

The formula I currently have is
B1 =+Sheet1'A17
when I try to copy this down column B, it turns into
B2 =+Sheet1'A18
B3 =+Sheet1'A19

I tried adding an absolute value on the 17, ie
B1 =+Sheet1'A$17
and copying down, but end up with
B2 =+Sheet1'A$17
B3 =+Sheet1'A$17

What I'm after is
B2 =+Sheet1'B$17
B3 =+Sheet1'C$17
etc etc etc
preferably without resorting to VBA or macros. I know it's possible to do if
you're going down the row instead of across, but I can't figure this out!
ANy
help would be greatly appreciated.


 
Reply With Quote
 
LCC Jon-Kun
Guest
Posts: n/a
 
      17th Dec 2007
Thanks for having a look at this, but it doesn't appear to be working. This
seems to highlight cell A2 in Sheet2 when I look at the ROW(A2) reference,
and I'm not 100% sure why. The INDIRECT command is a new one on me, as is
ADDRESS, so I'm looking at the help files for them and trying to puzzle this
one out.

All I know is that this isn't copying the data from Sheet1 to Sheet2. Oh,
and I've been a bit of an idiot and missed out the "!" between 'Sheet1' and
the cell number in the example below. Been staring at these spreadsheets for
far too long...

"Bob Phillips" wrote:

> Try this
>
> =INDIRECT("'Sheet1'!"&ADDRESS(17,ROW(A2)))
>
> --
> HTH
>
> Bob
>
> (there's no email, no snail mail, but somewhere should be gmail in my addy)
>
> "LCC Jon-Kun" <LCC Jon-(E-Mail Removed)> wrote in message
> news:C98C9C64-FCCD-4288-A7AA-(E-Mail Removed)...
> > First time posting here, but a question that most of you will probably
> > have
> > heard before.
> >
> > I'm trying to sort out a formula which involves taking data from one sheet
> > in the work book and using it on another sheet. Say for example, Sheet1
> > and
> > Sheet2.
> >
> > The data I want in Sheet1 is all on row 17, but I want to use this on
> > column
> > B in Sheet2
> >
> > The formula I currently have is
> > B1 =+Sheet1'A17
> > when I try to copy this down column B, it turns into
> > B2 =+Sheet1'A18
> > B3 =+Sheet1'A19
> >
> > I tried adding an absolute value on the 17, ie
> > B1 =+Sheet1'A$17
> > and copying down, but end up with
> > B2 =+Sheet1'A$17
> > B3 =+Sheet1'A$17
> >
> > What I'm after is
> > B2 =+Sheet1'B$17
> > B3 =+Sheet1'C$17
> > etc etc etc
> > preferably without resorting to VBA or macros. I know it's possible to do
> > if
> > you're going down the row instead of across, but I can't figure this out!
> > ANy
> > help would be greatly appreciated.

>
>
>

 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

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


Similar Threads
Thread Thread Starter Forum Replies Last Post
Absolute cell reference will not remain absolute. Mike K Microsoft Excel Worksheet Functions 1 8th Oct 2008 07:12 PM
How can I do an Absolute Cell Reference but non Absolute Cell Pais =?Utf-8?B?Sm9obg==?= Microsoft Excel Programming 1 22nd Jul 2005 07:28 PM
How can I do an Absolute Cell Reference but non Absolute Cell Pais =?Utf-8?B?Sm9obg==?= Microsoft Excel Programming 0 22nd Jul 2005 06:23 PM
Absolute reference within a formula not really absolute Fred Microsoft Excel Worksheet Functions 3 1st Jul 2004 06:08 PM
Absolute absolute cell reference jon west Microsoft Excel Misc 2 9th Oct 2003 02:32 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 06:23 PM.