#1   Report Post  
JIMMY
 
Posts: n/a
Default Spreading a list.

This is best described by example:
I need Sheet 2, Cell A1 to reference Sheet 1, Cell A1. Sheet 2, Cell A35 to
reference Sheet 1, Cell A2. Sheet 2, Cell A70 to reference Sheet 1, Cell A3.
Etc.

How do I do this!?
--
JIMMY
  #2   Report Post  
R.VENKATARAMAN
 
Posts: n/a
Default

you have not given how many values are there in sheet1 and column A. I
assumed only 10 values.
if different change the line
i=1 to 10
then use this sub

Public Sub taest()
Dim i As Integer
Dim j As Integer
For i = 1 To 10
Worksheets("sheet2").Cells(35 * i, 1).Value = Worksheets("sheet1").Cells(i +
1, 1).Value
Next i
Worksheets("sheet2").Range("a1") = Worksheets("sheet1").Range("a1")
End Sub
===================================
JIMMY wrote in message
...
This is best described by example:
I need Sheet 2, Cell A1 to reference Sheet 1, Cell A1. Sheet 2, Cell A35

to
reference Sheet 1, Cell A2. Sheet 2, Cell A70 to reference Sheet 1, Cell

A3.
Etc.

How do I do this!?
--
JIMMY



  #3   Report Post  
Ken Wright
 
Posts: n/a
Default

In cell A35 on sheet 1 put

=INDIRECT("Sheet2!A"&ROW()/35+1)

select A1:A35 and then grab the bottom corner of the range that looks like a
little black cross and drag down as far as needed. Now go back and in cell
A1 just link it directly to cell A1 on the other sheet.

NOTE:- If you are likely to insert or delete any rows on this sheet then I
would not suggest this option.

--
Regards
Ken....................... Microsoft MVP - Excel
Sys Spec - Win XP Pro / XL 97/00/02/03

----------------------------------------------------------------------------
It's easier to beg forgiveness than ask permission :-)
----------------------------------------------------------------------------

"JIMMY" wrote in message
...
This is best described by example:
I need Sheet 2, Cell A1 to reference Sheet 1, Cell A1. Sheet 2, Cell A35

to
reference Sheet 1, Cell A2. Sheet 2, Cell A70 to reference Sheet 1, Cell

A3.
Etc.

How do I do this!?
--
JIMMY



  #4   Report Post  
Ken Wright
 
Posts: n/a
Default

If you have NOTHING else in Col A in sheet1 other than these formulas, then
follow the instructions I gave you but use

=OFFSET(Sheet2!$A$1,COUNTA($A$1:A34),0) in cell A35

and then follow the rest as stated. You'll be 1 row off until you complete
cell A1.

--
Regards
Ken....................... Microsoft MVP - Excel
Sys Spec - Win XP Pro / XL 97/00/02/03

----------------------------------------------------------------------------
It's easier to beg forgiveness than ask permission :-)
----------------------------------------------------------------------------

"Ken Wright" wrote in message
...
In cell A35 on sheet 1 put

=INDIRECT("Sheet2!A"&ROW()/35+1)

select A1:A35 and then grab the bottom corner of the range that looks like

a
little black cross and drag down as far as needed. Now go back and in

cell
A1 just link it directly to cell A1 on the other sheet.

NOTE:- If you are likely to insert or delete any rows on this sheet then

I
would not suggest this option.

--
Regards
Ken....................... Microsoft MVP - Excel
Sys Spec - Win XP Pro / XL 97/00/02/03

--------------------------------------------------------------------------

--
It's easier to beg forgiveness than ask permission :-)
--------------------------------------------------------------------------

--

"JIMMY" wrote in message
...
This is best described by example:
I need Sheet 2, Cell A1 to reference Sheet 1, Cell A1. Sheet 2, Cell

A35
to
reference Sheet 1, Cell A2. Sheet 2, Cell A70 to reference Sheet 1,

Cell
A3.
Etc.

How do I do this!?
--
JIMMY





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
Refresh a Validation List? jhollin1138 Excel Discussion (Misc queries) 3 February 17th 05 05:48 PM
Comparing two List that a "Close" but not Identical carl Excel Worksheet Functions 0 January 25th 05 07:59 PM
Extracting Values on one list and not another B Schwarz Excel Discussion (Misc queries) 4 January 7th 05 01:48 PM
How do I find out what items are in one list but not in another l. Michelle Craig Excel Discussion (Misc queries) 2 December 22nd 04 08:32 PM
Creating a list from an existing list. Jad Excel Worksheet Functions 1 October 29th 04 06:00 AM


All times are GMT +1. The time now is 02:42 AM.

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"