A1 B1C1 A2 B2 C2 A3 B3 C3

car_carcharadon

New Member
Joined
Jun 7, 2022
Messages
3
Office Version
  1. 365
Platform
  1. Windows
I am trying to label a number of properties with aisles and racks. I am trying to get a string to increment in a couple of places. I have a solution that was manual and I know there is a better way - I just don't know it.
Building 1 (BLD1) has 1000 aisles and racks that go 8 high. I want to identify them as
BLD11000A - for Building 1, aisle 1000, Rack A
BLD11000A - for Building 1, aisle 1000, Rack B .......... up to
BLD11000A - for Building 1, aisle 1000, Rack H
then
BLD11001A - for Building 1, aisle 1001, Rack A
.......... up to
BLD11001H - for Building 1, aisle 1001, Rack H
and so on

I created
=CONCATENATE("BLD1",(1000+INT((ROW(B1)-1)/8)),A1)
works great on the Building and Aisle, but I couldn't figure out how to get the racks label to ONLY go A - H. What I ended up doing is in column A, entering A, B, C....H in the first 8 rows and then copying the pattern all the way down.
1654629315131.png


any education would be appreciated!
 

Excel Facts

Which came first: VisiCalc or Lotus 1-2-3?
Dan Bricklin and Bob Frankston debuted VisiCalc in 1979 as a Visible Calculator. Lotus 1-2-3 debuted in the early 1980's, from Mitch Kapor.
I am trying to label a number of properties with aisles and racks. I am trying to get a string to increment in a couple of places. I have a solution that was manual and I know there is a better way - I just don't know it.
Building 1 (BLD1) has 1000 aisles and racks that go 8 high. I want to identify them as
BLD11000A - for Building 1, aisle 1000, Rack A
BLD11000A - for Building 1, aisle 1000, Rack B .......... up to
BLD11000A - for Building 1, aisle 1000, Rack H
then
BLD11001A - for Building 1, aisle 1001, Rack A
.......... up to
BLD11001H - for Building 1, aisle 1001, Rack H
and so on

I created
=CONCATENATE("BLD1",(1000+INT((ROW(B1)-1)/8)),A1)
works great on the Building and Aisle, but I couldn't figure out how to get the racks label to ONLY go A - H. What I ended up doing is in column A, entering A, B, C....H in the first 8 rows and then copying the pattern all the way down.
View attachment 66488

any education would be appreciated!
Uggghhh I just realized i have a stupid typo in my text above. What I am trying to accomplish is (really)
BLD11000A - for Building 1, aisle 1000, Rack A
BLD11000B - for Building 1, aisle 1000, Rack B .......... up to
BLD11000H - for Building 1, aisle 1000, Rack H
then
BLD11001A - for Building 1, aisle 1001, Rack A
.......... up to
BLD11001H - for Building 1, aisle 1001, Rack H
and so on
 
Upvote 0
How about in B1 only (it will spill down)
Excel Formula:
="BLD1"&1000+INT(SEQUENCE(8000,,0)/8)&CHAR(MOD(SEQUENCE(8000,,0),8)+65)
 
Last edited:
Upvote 0
Solution
Outstanding!!!! That is it! Thank you very much!!!! I am not familiar (yet) with Sequence.
 
Upvote 0
You're welcome & thanks for the feedback.
 
Upvote 0

Forum statistics

Threads
1,214,641
Messages
6,120,693
Members
448,979
Latest member
DET4492

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