Expanding a Data Series using VBA

gingermonkey17

New Member
Joined
Mar 7, 2014
Messages
4
Hi All,

I'm not sure this is possible to do but here is definitely the best place to ask.

I currently use a bit of vba code to expand two pieces of data for example:

Cell 1 value: 1
Cell 2 Value: 4

With the vba code this is expanded into further cells to become:

Cell 3 Value: 1
Cell 4 Value: 2
Cell 5 Value: 3
Cell 6 Value: 4

The problem occurs because i want to do this for roughly 1000 rows, I could right the code per row but obviously this is impractical, is there a way to get this done?

Current code below:

Code:
Private Sub CommandButton1_Click()
Dim vStop, vStart
    With WorksheetFunction
        Start001 = .Min(Sheet1.Range("G6:H6"))
        Stop001 = .Max(Sheet1.Range("G6:H6"))
    End With
     
    With Sheet1
        .Range("L6") = Start001
        .Range("L6:Z6").DataSeries Step:=1, Stop:=Stop001
    End With
End Sub

Thank you!
 

Excel Facts

Did you know Excel offers Filter by Selection?
Add the AutoFilter icon to the Quick Access Toolbar. Select a cell containing Apple, click AutoFilter, and you will get all rows with Apple
Welcome to the board. Try:
Code:
Private Sub CommandButton1_Click()

Dim vStop As Variant

Application.screenUpdating = False

With Sheet1
    .Range("L6").Value = Application.WorksheetFunction.Min(.Range("G6:H6"))
    vStop = Application.WorksheetFunction.Max(.Range("G6:H6"))
    .Range("L6").Resize(vStop - .Range("L6").Value + 1).DataSeries Step:=1, Stop:=vStop
End With

Application.screenUpdating = True

End Sub
 
Upvote 0
Hi JackDanIce,

Thanks for the reply.

Ideally I want the expanded data to stay in one row, i.e in this case row 6, so the data is expanded into L6, M6, N6, O6

This is because in row 7, 8, 9 etc. there is more data that needs to be expanded in the same way, these may be the same/longer/shorter than the first set of data.

I hope this is clear enough to understand!

Thanks.
 
Upvote 0
Just need to add a ',' try:
Rich (BB code):
Private Sub CommandButton1_Click()


Dim vStop As Variant


Application.screenUpdating = False


With Sheet1
    .Range("L6").Value = Application.WorksheetFunction.Min(.Range("G6:H6"))
    vStop = Application.WorksheetFunction.Max(.Range("G6:H6"))
    .Range("L6").Resize(, vStop - .Range("L6").Value + 1).DataSeries Step:=1, Stop:=vStop
End With


Application.screenUpdating = True


End Sub
 
Upvote 0
OK so that now expands the first row perfectly thank you, now how do I extend it to expand anywhere up to 1000 rows?

I say anywhere because it isn't set to 1000 but it could be anywhere up to that amount.

Example:

Row 6: 1 to 5 Expands to 1, 2, 3, 4, 5
Row 7: 8 to 12 Expands to 8, 9, 10, 11, 12
Row 8: 4 to 6 Expands to 4, 5, 6

and so on...

Thanks for your help so far!
 
Upvote 0
gingermonkey17,

Sample raw data:


Excel 2007
GHIJKLMNOPQ
614
715
816
979
10-1-5
11
Sheet1


After the macro:


Excel 2007
GHIJKLMNOPQ
6141234
71512345
816123456
979789
10-1-5-5-4-3-2-1
11
Sheet1


Please TEST this FIRST in a COPY of your workbook (always make a backup copy before trying new code, you never know what you might lose).

Code:
Option Explicit
Sub ExpandDataSeries()
' hiker95, 03/11/2014, ME63357
Dim c As Range, n As Long
Dim MyStart As Long, MyStop As Long
Application.ScreenUpdating = False
With Sheets("Sheet1")
  For Each c In .Range("G6", .Range("G" & Rows.Count).End(xlUp))
    MyStart = WorksheetFunction.Min(.Range(.Cells(c.Row, "G"), .Cells(c.Row, "H")))
    MyStop = WorksheetFunction.Max(.Range(.Cells(c.Row, "G"), .Cells(c.Row, "H")))
    n = (MyStop - MyStart) + 1
    .Range("L" & c.Row) = MyStart
    .Range(.Cells(c.Row, 12), .Cells(c.Row, 12 + n)).DataSeries Step:=1, Stop:=MyStop
  Next c
End With
Application.ScreenUpdating = True
End Sub

Before you use the macro with Excel 2007 or newer, save your workbook, Save As, a macro enabled workbook with the file extension .xlsm

Then run the ExpandDataSeries macro.
 
Upvote 0
Almost identical to hiker's suggestion except it's the code I suggested earlier, adjusted (if you were trying to follow/understand it for continuation purposes)
Code:
Private Sub CommandButton1_Click()


Dim vStop As Variant
Dim LR As Long
Dim rng As Range


Application.screenUpdating = False


With Sheet1
    LR = .Range("L" & Rows.Count).End(xlUp).Row
    For Each rng In .Range("L6:L" & LR)
        .Range("L" & rng.Row).Value = Application.WorksheetFunction.Min(rng.Resize(, 2))
        vStop = Application.WorksheetFunction.Max(rng.Resize(, 2))
        .Range("L" & rng.Row).Resize(, vStop - .Range("L" & rng.Row).Value + 1).DataSeries Step:=1, Stop:=vStop
    Next rng
End With


Application.screenUpdating = True


Set rng = Nothing


End Sub
 
Upvote 0
Hi Both,

The solution works brilliantly, absolutely fantastic.

This spreadsheet has the possibility to get a bit more complex yet so hopefully I can call on you two to help me out.

Thanks!
 
Upvote 0
gingermonkey17,

Thanks for the feedback.

You are very welcome. Glad we could help.

And, come back anytime.
 
Upvote 0

Forum statistics

Threads
1,215,455
Messages
6,124,937
Members
449,196
Latest member
Maxkapoor

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