Convert Excel Range to Rows

raltam

New Member
Joined
Mar 10, 2018
Messages
9
Hello,I am trying to figure out a way to create one big master list that lists all of the accounts within the given range.

I have about 1000 rows with different variation of ranges (1st example below) and for each range listed below, I need to list each account within that range in column D and then getting it to do the same for each different range. For example, for my example below, the 1st range is from 70000 to 71000, I want to list all accounts within that range in column D (including the beginning and ending account rage). So for the 1st range, I should ultimately have 1000 rows and continue on for every range there after. If the range is 70000 to 70001 then it would list two object accounts and so on. I think you guys get the point.

At the end I would end up with four columns like in the second example below and will have thousands of rows for the different ranges.

I started doing this manually and trying some IF scenarios, but I haven't been successful and this would obviously take me forever to do it manually.

Any help is greatly appreciated. I did look around and I didn't quite find something that would help me with this, so thanks in advance for your help!!



Key
(Col A)

Account From
(Col B)

Account To
(Col C)

70000 :71000
70000
71000

72000 :74000

<tbody>
</tbody>
72000
74000
72000 :74900
72000
74900
Key
(A)

Account From
(B)

Account To
(C)

List Each Account
(D)

70000 :71000
70000
71000
70000
70000 :71000
70000
71000
70001
70000 :71000
70000
71000
70002
70000 :71000
70000
71000
70003
70000 :71000
70000
71000
70004
70000 :71000
70000
71000
70005
70000 :71000
70000
71000
70006
70000 :71000
70000
71000
70007
70000 :71000
70000
71000
70008

<tbody>
</tbody>
 

Excel Facts

Return population for a City
If you have a list of cities in A2:A100, use Data, Geography. Then =A2.Population and copy down.

Excel 2010
ABCD
1KeyFromTo
270:7870789
379:8579857
486:97869712
5
670070
770171
870272
970373
1070474
1170575
1270676
1370777
1470878
1579079
1679180
1779281
1879382
1979483
2079584
2179685
Sheet1
Cell Formulas
RangeFormula
D2=C2-B2+1
A6=LOOKUP(ROW(B1),SUMIF(OFFSET(D$1,,,ROW($1:$99),),"<>")+1,B$2:B$99)&""
B6=COUNTIF($A$6:A6,A6)-1
C6=A6+B6


The ranges can be adjusted for your data
 
Last edited:
Upvote 0
Hi Formula seems to be the answer looking at above, however this gives you the option to input first and last number then fills the series for you


Code:
Sub KWCreateManyNumbers()


    Dim TopNumber As Long
    Dim BottomNumber As Long
    Dim i As Long
    Dim NextRow As Long


    
    NextRow = Cells(Rows.Count, 4).End(xlUp).Row + 1
    
    TopNumber = InputBox(Prompt:="Please enter the first Number in the range", Title:="Select first number")
    BottomNumber = InputBox(Prompt:="Please enter the Last Number in the range", Title:="Select Last number")
    
    Cells(NextRow, 4).Select
    
    For i = TopNumber To BottomNumber
        Cells(NextRow, 4) = i
        Cells(NextRow, 1) = TopNumber & " " & ":" & " " & BottomNumber
        Cells(NextRow, 2) = TopNumber
        Cells(NextRow, 3) = BottomNumber
        NextRow = NextRow + 1
    Next i
    
    
    
End Sub
 
Upvote 0
Sorry.. I should have been more clear, but I need the key to be listed on each row also.

I am not at home at the moment to try it, but will this also carry the "key" column also?

As additional info, once I compile this huge master list with all the ranges and accounts in four columns (Key, Account From, Account To, and Individual Object account rows), I am then going to use that key to link it to another table so I can then pull in the list of accounts for each range whenever there's a one to one match. That's why I need it all in one worksheet and four columns listing all four columns. Sorry for the confusion. Thanks again!
 
Upvote 0
Ok... I could give that a try when I get home.

Is there a way to point the macro to my existing list of ranges with keys and have the macro automatically create the series for each of the 1000 ranges that I have listed - one after another? or do I have to enter the values for each range?
 
Upvote 0
will this also carry the "key" column also?

Yes, just add another column and change the B in the formula to A or wherever you have the key. A formula can also split the key along the : if you were manually doing that before.
 
Last edited:
Upvote 0
If you want to stick with code just do as it states above, yes I could probably replace the code if I understood where your list of requirements are and how they look on the sheet
 
Upvote 0
I tried, but it did not seem to work for me. I was able to carry the formula and it worked for the first range, but it didn't change as it moved to the next range. I sent you a PM. Thanks for your help!
 
Upvote 0
Yes, just add another column and change the B in the formula to A or wherever you have the key. A formula can also split the key along the : if you were manually doing that before.

I tried, but it did not seem to work for me. I was able to carry the formula and it worked for the first range, but it didn't change as it moved to the next range. I sent you a PM. Thanks for your help!
 
Upvote 0

Forum statistics

Threads
1,214,589
Messages
6,120,415
Members
448,960
Latest member
AKSMITH

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