Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
barry
 
Posts: n/a
Default how do i fill down a series of linked cells

i have created a log on worksheet 1 that references cell h6 on ws2,
ws3,ws4...... and i want to be able to fill down in a series but the fill
handle only fills down the same worksheet so i have type the ws# each time.
how can i fill down easily
  #2   Report Post  
Posted to microsoft.public.excel.misc
Gary''s Student
 
Posts: n/a
Default how do i fill down a series of linked cells

Use the INDIRECT() function:

Let's say we have six sheets:
Sheet1
Sheet2
Sheet3
Sheet4
Sheet5
Sheet6

In A1 enter:
=INDIRECT("Sheet"&ROW()&"!H6") and copy down thru A6


--
Gary's Student


"barry" wrote:

i have created a log on worksheet 1 that references cell h6 on ws2,
ws3,ws4...... and i want to be able to fill down in a series but the fill
handle only fills down the same worksheet so i have type the ws# each time.
how can i fill down easily

  #3   Report Post  
Posted to microsoft.public.excel.misc
Gord Dibben
 
Posts: n/a
Default how do i fill down a series of linked cells

=INDIRECT("ws" & (ROW()) & "!$H$6")

Substitute for "ws" if not "ws" per your example.

Entered in a cell in row 1 and copied down that column


Gord Dibben MS Excel MVP

On Mon, 26 Jun 2006 08:56:03 -0700, barry
wrote:

i have created a log on worksheet 1 that references cell h6 on ws2,
ws3,ws4...... and i want to be able to fill down in a series but the fill
handle only fills down the same worksheet so i have type the ws# each time.
how can i fill down easily


  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 116
Default how do i fill down a series of linked cells

I'm still lost, this didn't seem to work. I must be doing something wrong.

"Gary''s Student" wrote:

Use the INDIRECT() function:

Let's say we have six sheets:
Sheet1
Sheet2
Sheet3
Sheet4
Sheet5
Sheet6

In A1 enter:
=INDIRECT("Sheet"&ROW()&"!H6") and copy down thru A6


--
Gary's Student


"barry" wrote:

i have created a log on worksheet 1 that references cell h6 on ws2,
ws3,ws4...... and i want to be able to fill down in a series but the fill
handle only fills down the same worksheet so i have type the ws# each time.
how can i fill down easily

  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 116
Default how do i fill down a series of linked cells

maybe im doing something wrong or my question was not explained properly. I
have a workbook with sheet 1 thru sheet 31, sheets 1 thru 30 are formatted
identical except that there are different values in the cells, ie cell a1 on
sheet 1 the value is contractor A, sheet 2 cell a1 the value is contractor B.
what i would like to do is have sheet 31 be a log so that i can see at a
glance what is on sheet 1 thru sheet 30 cel a1. so i copied cell a1 on sheet
1 and pasted it to sheet 31 and linked the cells, i then filled down but had
to change the sheet # in each cell because it picked up sheet 1 all the way
down the fill. how can i accomplish this without having to type in every
cell.

"Gord Dibben" wrote:

=INDIRECT("ws" & (ROW()) & "!$H$6")

Substitute for "ws" if not "ws" per your example.

Entered in a cell in row 1 and copied down that column


Gord Dibben MS Excel MVP

On Mon, 26 Jun 2006 08:56:03 -0700, barry
wrote:

i have created a log on worksheet 1 that references cell h6 on ws2,
ws3,ws4...... and i want to be able to fill down in a series but the fill
handle only fills down the same worksheet so i have type the ws# each time.
how can i fill down easily





  #6   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 22,906
Default how do i fill down a series of linked cells

barry

You have explained what you want.

We have given you a method.

Are the worksheets named sheet 1 through sheet 31(note space in name)?

Or named something else.

Give us the precise naming convention.

You should be able to figure out from the two INDIRECT formulas posted what to
do, but maybe your sheet names aren't what you say they are?


Gord

On Wed, 5 Jul 2006 08:30:02 -0700, barry
wrote:

maybe im doing something wrong or my question was not explained properly. I
have a workbook with sheet 1 thru sheet 31, sheets 1 thru 30 are formatted
identical except that there are different values in the cells, ie cell a1 on
sheet 1 the value is contractor A, sheet 2 cell a1 the value is contractor B.
what i would like to do is have sheet 31 be a log so that i can see at a
glance what is on sheet 1 thru sheet 30 cel a1. so i copied cell a1 on sheet
1 and pasted it to sheet 31 and linked the cells, i then filled down but had
to change the sheet # in each cell because it picked up sheet 1 all the way
down the fill. how can i accomplish this without having to type in every
cell.

"Gord Dibben" wrote:

=INDIRECT("ws" & (ROW()) & "!$H$6")

Substitute for "ws" if not "ws" per your example.

Entered in a cell in row 1 and copied down that column


Gord Dibben MS Excel MVP

On Mon, 26 Jun 2006 08:56:03 -0700, barry
wrote:

i have created a log on worksheet 1 that references cell h6 on ws2,
ws3,ws4...... and i want to be able to fill down in a series but the fill
handle only fills down the same worksheet so i have type the ws# each time.
how can i fill down easily




  #7   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 116
Default how do i fill down a series of linked cells

Gord,

=INDIRECT("MCCO COVER SHEET 01" & (ROW()) & "!$C$16") this is what i pasted
and then filled down but the cells return the following; #REF!, the sheets
are named MCCO COVER SHEET 01, MCCO COVER SHEET 02, MCCO COVER SHEET
03....... the log sheet is named; MCCO LOG. Your help is appreciated.

"Gord Dibben" wrote:

barry

You have explained what you want.

We have given you a method.

Are the worksheets named sheet 1 through sheet 31(note space in name)?

Or named something else.

Give us the precise naming convention.

You should be able to figure out from the two INDIRECT formulas posted what to
do, but maybe your sheet names aren't what you say they are?


Gord

On Wed, 5 Jul 2006 08:30:02 -0700, barry
wrote:

maybe im doing something wrong or my question was not explained properly. I
have a workbook with sheet 1 thru sheet 31, sheets 1 thru 30 are formatted
identical except that there are different values in the cells, ie cell a1 on
sheet 1 the value is contractor A, sheet 2 cell a1 the value is contractor B.
what i would like to do is have sheet 31 be a log so that i can see at a
glance what is on sheet 1 thru sheet 30 cel a1. so i copied cell a1 on sheet
1 and pasted it to sheet 31 and linked the cells, i then filled down but had
to change the sheet # in each cell because it picked up sheet 1 all the way
down the fill. how can i accomplish this without having to type in every
cell.

"Gord Dibben" wrote:

=INDIRECT("ws" & (ROW()) & "!$H$6")

Substitute for "ws" if not "ws" per your example.

Entered in a cell in row 1 and copied down that column


Gord Dibben MS Excel MVP

On Mon, 26 Jun 2006 08:56:03 -0700, barry
wrote:

i have created a log on worksheet 1 that references cell h6 on ws2,
ws3,ws4...... and i want to be able to fill down in a series but the fill
handle only fills down the same worksheet so i have type the ws# each time.
how can i fill down easily




  #8   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 22,906
Default how do i fill down a series of linked cells

Barry

I created a workbook with 3 sheets. One named MCCO LOG and the others as the 01
and 02 cover sheets per your example.

Tested this formula entered in A1 of MCCO LOG and copied down. Works fine.

=INDIRECT("'MCCO COVER SHEET 0" & ROW() &"'!$C$16")

NOTE: you need the ' added around the sheet name because of the spaces in the
name.

" then' before the M

" then ' before the !


Gord

On Wed, 5 Jul 2006 14:06:02 -0700, barry
wrote:

Gord,

=INDIRECT("MCCO COVER SHEET 01" & (ROW()) & "!$C$16") this is what i pasted
and then filled down but the cells return the following; #REF!, the sheets
are named MCCO COVER SHEET 01, MCCO COVER SHEET 02, MCCO COVER SHEET
03....... the log sheet is named; MCCO LOG. Your help is appreciated.

"Gord Dibben" wrote:

barry

You have explained what you want.

We have given you a method.

Are the worksheets named sheet 1 through sheet 31(note space in name)?

Or named something else.

Give us the precise naming convention.

You should be able to figure out from the two INDIRECT formulas posted what to
do, but maybe your sheet names aren't what you say they are?


Gord

On Wed, 5 Jul 2006 08:30:02 -0700, barry
wrote:

maybe im doing something wrong or my question was not explained properly. I
have a workbook with sheet 1 thru sheet 31, sheets 1 thru 30 are formatted
identical except that there are different values in the cells, ie cell a1 on
sheet 1 the value is contractor A, sheet 2 cell a1 the value is contractor B.
what i would like to do is have sheet 31 be a log so that i can see at a
glance what is on sheet 1 thru sheet 30 cel a1. so i copied cell a1 on sheet
1 and pasted it to sheet 31 and linked the cells, i then filled down but had
to change the sheet # in each cell because it picked up sheet 1 all the way
down the fill. how can i accomplish this without having to type in every
cell.

"Gord Dibben" wrote:

=INDIRECT("ws" & (ROW()) & "!$H$6")

Substitute for "ws" if not "ws" per your example.

Entered in a cell in row 1 and copied down that column


Gord Dibben MS Excel MVP

On Mon, 26 Jun 2006 08:56:03 -0700, barry
wrote:

i have created a log on worksheet 1 that references cell h6 on ws2,
ws3,ws4...... and i want to be able to fill down in a series but the fill
handle only fills down the same worksheet so i have type the ws# each time.
how can i fill down easily





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
Linking Groups of cells between workbooks vnacj-joe Excel Discussion (Misc queries) 4 June 14th 07 05:18 PM
FILL cells Daniel Q. Excel Discussion (Misc queries) 4 June 8th 06 06:47 PM
Linked cells from ActiveX control kenn74 Excel Worksheet Functions 0 March 6th 06 06:20 PM
Edit / Fill / Series Pauline Excel Discussion (Misc queries) 5 December 7th 05 07:17 PM
Identifying the Active Fill Color Steve Conary Excel Discussion (Misc queries) 3 December 9th 04 04:45 AM


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