Prevent my formula from jumping down

Seminole1284

New Member
Joined
Mar 25, 2018
Messages
2
First Time Poster so forgive the bad formatting. I am building a basic spreadsheet for our warehouses to use to print location labels. I data is in this format. In order to print labels, I need to stack the info on top of each other. When I do this and drag the formula down, it is jumping three locations and skipping rows. What can I use to be able to drag down a formula and it only jumps one row on the source data.

Source Data
ZoneLocationLocation ID
A2B2C2
A3B3C3
A4B4C4

<tbody>
</tbody>







Label Page- I am stacking ZONE, LOCATION, and LOCATION ID on top of each other so it prints on a label stacked. When I drag it down, it currently skips three rows every time.

Currently HappeningWhat I need to achieve
=A2=A2
=B2=B2
=C2=C2
=A5=A3
=B5=B3
=C5=C3
=A8=A4
=B8=B4
=C8=C4

<tbody>
</tbody>

















Thank you in advance for your suggestions
 

Excel Facts

What did Pito Salas invent?
Pito Salas, working for Lotus, popularized what would become to be pivot tables. It was released as Lotus Improv in 1989.
Welcome to the forum.
See attached link for formula used below. Just copy down as needed.

https://www.extendoffice.com/docume...anspose-multiple-columns-into-one-column.html

ABC
1ZoneLocationLocation ID
2A2B2C2
3A3B3C3
4A4B4C4
5
6
7A2
8B2
9C2
10A3
11B3
12C3
13A4
14B4
15C4

<colgroup><col style="width:30px; "><col style="width:51px;"><col style="width:74px;"><col style="width:80px;"></colgroup><tbody>
</tbody>

Spreadsheet Formulas
CellFormula
A7=INDEX($A$2:$C$4,1+INT((ROW(A1)-1)/COLUMNS($A$1:$C$4)),MOD(ROW(A1)-1+COLUMNS($A$1:$C$4),COLUMNS($A$1:$C$4))+1)

<tbody>
</tbody>

<tbody>
</tbody>


Excel tables to the web >> Excel Jeanie HTML 4


Thank you so much!
 
Upvote 0

Forum statistics

Threads
1,215,504
Messages
6,125,185
Members
449,213
Latest member
Kirbito

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