How to increase cell row number by 1 when drag down to autofill

marumaru

New Member
Joined
Jun 6, 2023
Messages
2
Office Version
  1. 2019
Platform
  1. Windows
Hello all,

This is how I want to display data from the ‘Info’ sheet. But when I use autofill by dragging down, it skips rows and goes from row 1 to row 4. How can I make it go to row 2 instead? Any advice is welcome. Thanks!

1686025823034.png

1686025836966.png

1686025876479.png
 

Excel Facts

Whats the difference between CONCAT and CONCATENATE?
The newer CONCAT function can reference a range of cells. =CONCATENATE(A1,A2,A3,A4,A5) becomes =CONCAT(A1:A5)
Welcome to the MrExcel board!

I suggest that you investigate XL2BB for providing sample data to make it easier for helpers by not having to manually type out sample data to test with. :)

My info sheet:

marumaru.xlsm
ABCDEFG
131/05/202333885872518UPS Ground 1ZZ102BLz12123123
231/05/202333895394126UPS Ground 2ZZ102BKz1456545645
331/05/202333896731734UPS Ground 3ZG599RGz897897897
431/05/202333897467642UPS 2nd Day AirGG218BLz4564874869
info


In tracking, put these formulas in row 1 and then drag down and see how that goes.

Cell Formulas
RangeFormula
A1:A12,C1:C12A1=CHOOSE(MOD(ROWS(A$1:A1),3)+1,INDEX(info!E:E,INT((ROWS(A$1:A1)-1)/3)+1),"","")
B1:B12B1=CHOOSE(MOD(ROWS(B$1:B1),3)+1,"",INDEX(info!B:B,INT((ROWS(B$1:B1)-1)/3)+1),INDEX(info!C:C,INT((ROWS(B$1:B1)-1)/3)+1))
D1:D12D1=CHOOSE(MOD(ROWS(D$1:D1),3)+1,"",INDEX(info!A:A,INT((ROWS(D$1:D1)-1)/3)+1),INDEX(info!F:F,INT((ROWS(D$1:D1)-1)/3)+1))
E1:E12E1=CHOOSE(MOD(ROWS(E$1:E1),3)+1,"","",INDEX(info!D:D,INT((ROWS(E$1:E1)-1)/3)+1))
 
Upvote 1
You're welcome. Thanks for the follow-up. :)
 
Upvote 0

Forum statistics

Threads
1,215,159
Messages
6,123,351
Members
449,097
Latest member
thnirmitha

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