#1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Bee Bee is offline
external usenet poster
 
Posts: 46
Default Auto Fill

I am trying to copy a cell formula (see formula below, which is a formula
linking the value of a cell in another workbook) using Autofill but not
having much success. The cell formula is:-

='[2nd QTR Price List - Source Data.xls]A227 Grille Products'!$E$170

When I use the drag & fill cross it only copies the formula but does not
automatically change the cell reference i.e. the $E$170 should change to
$E$171.

Any help on this would be much appreciated. Thank you!
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 4,624
Default Auto Fill

See "The difference between relative and absolute references" in the
"About cell and range references" topic in XL Help.

For instance, you can change

...!$E$170

to

...!$E170

In article ,
Bee wrote:

I am trying to copy a cell formula (see formula below, which is a formula
linking the value of a cell in another workbook) using Autofill but not
having much success. The cell formula is:-

='[2nd QTR Price List - Source Data.xls]A227 Grille Products'!$E$170

When I use the drag & fill cross it only copies the formula but does not
automatically change the cell reference i.e. the $E$170 should change to
$E$171.

Any help on this would be much appreciated. Thank you!

  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Bee Bee is offline
external usenet poster
 
Posts: 46
Default Auto Fill

I tried editing my formula and now it will change the cell reference
automatically using autofill. However, I need the formula to transpose from
columns in my source data to rows in my destination data (which I can do by
copying and transposing - but it is probably quicker to just change the cell
reference manually!)

Thank you for your help!

"JE McGimpsey" wrote:

See "The difference between relative and absolute references" in the
"About cell and range references" topic in XL Help.

For instance, you can change

...!$E$170

to

...!$E170

In article ,
Bee wrote:

I am trying to copy a cell formula (see formula below, which is a formula
linking the value of a cell in another workbook) using Autofill but not
having much success. The cell formula is:-

='[2nd QTR Price List - Source Data.xls]A227 Grille Products'!$E$170

When I use the drag & fill cross it only copies the formula but does not
automatically change the cell reference i.e. the $E$170 should change to
$E$171.

Any help on this would be much appreciated. Thank you!


  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 22,906
Default Auto Fill

Bee

Row references won't change as you drag across, only if you drag down.

Either one of these should work.

=INDIRECT("Sheet2!A"&COLUMN(A1))

=OFFSET(Sheet2!$A$1,COLUMN(A1)-1,)

Or this one which is not volatile.

=INDEX($A:$A,(ROWS($1:1)-1)*1+COLUMNS($A:B)-1)

Adjust workbook and sheet path to suit.


Gord Dibben MS Excel MVP

On Tue, 20 Mar 2007 22:07:00 -0700, Bee wrote:

I tried editing my formula and now it will change the cell reference
automatically using autofill. However, I need the formula to transpose from
columns in my source data to rows in my destination data (which I can do by
copying and transposing - but it is probably quicker to just change the cell
reference manually!)

Thank you for your help!

"JE McGimpsey" wrote:

See "The difference between relative and absolute references" in the
"About cell and range references" topic in XL Help.

For instance, you can change

...!$E$170

to

...!$E170

In article ,
Bee wrote:

I am trying to copy a cell formula (see formula below, which is a formula
linking the value of a cell in another workbook) using Autofill but not
having much success. The cell formula is:-

='[2nd QTR Price List - Source Data.xls]A227 Grille Products'!$E$170

When I use the drag & fill cross it only copies the formula but does not
automatically change the cell reference i.e. the $E$170 should change to
$E$171.

Any help on this would be much appreciated. Thank you!



  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Bee Bee is offline
external usenet poster
 
Posts: 46
Default Auto Fill

Thank you very much - it is now working with the new formula!!!

Cheers,
Bee :)

"Gord Dibben" wrote:

Bee

Row references won't change as you drag across, only if you drag down.

Either one of these should work.

=INDIRECT("Sheet2!A"&COLUMN(A1))

=OFFSET(Sheet2!$A$1,COLUMN(A1)-1,)

Or this one which is not volatile.

=INDEX($A:$A,(ROWS($1:1)-1)*1+COLUMNS($A:B)-1)

Adjust workbook and sheet path to suit.


Gord Dibben MS Excel MVP

On Tue, 20 Mar 2007 22:07:00 -0700, Bee wrote:

I tried editing my formula and now it will change the cell reference
automatically using autofill. However, I need the formula to transpose from
columns in my source data to rows in my destination data (which I can do by
copying and transposing - but it is probably quicker to just change the cell
reference manually!)

Thank you for your help!

"JE McGimpsey" wrote:

See "The difference between relative and absolute references" in the
"About cell and range references" topic in XL Help.

For instance, you can change

...!$E$170

to

...!$E170

In article ,
Bee wrote:

I am trying to copy a cell formula (see formula below, which is a formula
linking the value of a cell in another workbook) using Autofill but not
having much success. The cell formula is:-

='[2nd QTR Price List - Source Data.xls]A227 Grille Products'!$E$170

When I use the drag & fill cross it only copies the formula but does not
automatically change the cell reference i.e. the $E$170 should change to
$E$171.

Any help on this would be much appreciated. Thank you!





  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 22,906
Default Auto Fill

Good to hear.


Gord

On Wed, 21 Mar 2007 14:16:21 -0700, Bee wrote:

Thank you very much - it is now working with the new formula!!!

Cheers,
Bee :)

"Gord Dibben" wrote:

Bee

Row references won't change as you drag across, only if you drag down.

Either one of these should work.

=INDIRECT("Sheet2!A"&COLUMN(A1))

=OFFSET(Sheet2!$A$1,COLUMN(A1)-1,)

Or this one which is not volatile.

=INDEX($A:$A,(ROWS($1:1)-1)*1+COLUMNS($A:B)-1)

Adjust workbook and sheet path to suit.


Gord Dibben MS Excel MVP

On Tue, 20 Mar 2007 22:07:00 -0700, Bee wrote:

I tried editing my formula and now it will change the cell reference
automatically using autofill. However, I need the formula to transpose from
columns in my source data to rows in my destination data (which I can do by
copying and transposing - but it is probably quicker to just change the cell
reference manually!)

Thank you for your help!

"JE McGimpsey" wrote:

See "The difference between relative and absolute references" in the
"About cell and range references" topic in XL Help.

For instance, you can change

...!$E$170

to

...!$E170

In article ,
Bee wrote:

I am trying to copy a cell formula (see formula below, which is a formula
linking the value of a cell in another workbook) using Autofill but not
having much success. The cell formula is:-

='[2nd QTR Price List - Source Data.xls]A227 Grille Products'!$E$170

When I use the drag & fill cross it only copies the formula but does not
automatically change the cell reference i.e. the $E$170 should change to
$E$171.

Any help on this would be much appreciated. Thank you!




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
Auto fill [email protected] Excel Discussion (Misc queries) 5 January 16th 07 11:25 PM
Auto fill, I Think timboellis2031 Excel Discussion (Misc queries) 0 June 22nd 06 11:50 AM
using auto fill edit or fill handel fill handle or auto fill Excel Worksheet Functions 0 February 10th 06 07:01 PM
Auto fill Mike F. Excel Discussion (Misc queries) 3 December 15th 05 05:03 PM
Auto fill box sue t Excel Discussion (Misc queries) 3 January 13th 05 05:51 PM


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