Simple Fill Down Problem...

JWooz

New Member
Joined
Jun 12, 2013
Messages
17
Office Version
  1. 365
Platform
  1. Windows
How do I fill down keeping the same row number pattern? How to keep this pattern going:
=Sheet1!A1
=Sheet1!B1
=Sheet1!A2
=Sheet1!B2
=Sheet1!A3
=Sheet1!B3

As always, any help is appreciated.

JWooz
 

Excel Facts

Quick Sum
Select a range of cells. The total appears in bottom right of Excel screen. Right-click total to add Max, Min, Count, Average.
try this:
Excel Formula:
=OFFSET(Sheet1!$A$1,(INT(((ROW()-1)/2))),MOD(ROW()-1,2))
 
Upvote 0
Hey... just for my own education... how would you do it if you wanted to do the same thing with multiple columns? For example:
A1 B1 C1 D1
E1 F1 G1 H1

??
 
Upvote 0
If you have Excel D365, you can use =WRAPCOLS()

Excel Formula:
=WRAPROWS(A1:H1,4)
 
Upvote 1
I suggest that you update your Account details (or click your user name at the top right of the forum) so helpers always know what Excel version(s) & platform(s) you are using as the best solution often varies by version. (Don’t forget to scroll down & ‘Save’)

For the original question here are a couple of options (depending on your version) that avoid the use of the volatile function OFFSET

23 10 10.xlsm
AB
1ab
2cd
3ef
4gh
Sheet1


23 10 10.xlsm
AB
1aa
2bb
3cc
4dd
5ee
6ff
7gg
8hh
JWooz
Cell Formulas
RangeFormula
A1:A8A1=INDEX(Sheet1!A:B,(ROWS(A$1:A1)+1)/2,1+ISEVEN(ROWS(A$1:A1)))
B1:B8B1=INDEX(TOCOL(Sheet1!A$1:B$4),ROWS(B$1:B1))
 
Upvote 0
Thanks BigBeachBananas... I went with yours and it works perfect. I changed the expression to:
Excel Formula:
=WRAPROWS('Paste Report Here'!A1:'Paste Report Here'!N1,7)
 

Attachments

  • Report Capture.JPG
    Report Capture.JPG
    132.3 KB · Views: 4
Upvote 0
If you have Excel D365, you can use =WRAPCOLS()

Excel Formula:
=WRAPROWS(A1:H1,4)
Ok... I posted too soon. Still skips the next row. No matter what I do, as I fill down it skips. I get this:
In cell A1 I have
Excel Formula:
=WRAPROWS('Paste Report Here'!A1:'Paste Report Here'!N1,7)
But when I fill down I get the following
Excel Formula:
=WRAPROWS('Paste Report Here'!A3:'Paste Report Here'!N3,7)
- it skips Row 2 and continues on.

Trying to make myself clear here as perhaps I haven't previously (me and not you all)... I want for printing purposes, to be able to have the following:
Row 1 - A1 B1 C1 D1 E1 F1 G1
Row 2 - H1 I1 J1 K1 L1 M1 N1
Row 3 - A2 B2 C2 D2 E2 F2 G2
Row 4 - H2 I2 J2 K2 L2 M2 N2
Row 5 - A3 B3 C3 D3 E3 F3 G3
Row 6 - H3 I3 J3 K3 L3 M3 N3
And so on...

As always, your time and help is very much appreciated.

JWooz
 
Upvote 0
It's a dynamic array so you don't want to fill it down. Instead, try

Excel Formula:
=WRAPROWS(TOCOL(A1:N3),7)
 
Upvote 1
Solution

Forum statistics

Threads
1,215,098
Messages
6,123,082
Members
449,094
Latest member
mystic19

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top