Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1
Default Instert Rows Based on Cell Value


Hello,

I could really use a hand on this one.

I have multiple lines of different products ordered by differen
people. In each row in excel it shows the product that was ordered a
well as the quantity and some other information.

What I need to do is expand each row based on the quantity value.
Essentially if someone ordered 4 of a particular product i want a macr
to add three rows below it.

for i.e.

this:

Invoice # / Date / Quantity/
2532434 / 11/02/ 5

would turn into this:

2532434 / 11/02 / 1
2532434 / 11/02 / 1
2532434 / 11/02 / 1
2532434 / 11/02 / 1
2532434 / 11/02 / 1

so the macro will add 4 rows below the 1st to make a total of 5 rows

I essentially want to expand the quantity sold so each row shows
quantity of 1

can anyone help me out with that

--
derekra
-----------------------------------------------------------------------
derekrap's Profile: http://www.excelforum.com/member.php...fo&userid=2065
View this thread: http://www.excelforum.com/showthread.php?threadid=48101

  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 35,218
Default Instert Rows Based on Cell Value

Try this against a copy of your data--it destroys the original data when it
builds the new stuff.

Option Explicit
Sub testme()

Dim wks As Worksheet
Dim FirstRow As Long
Dim LastRow As Long
Dim iRow As Long
Dim RowsToInsert As Long

Set wks = Worksheets("Sheet1")

With wks
FirstRow = 2 'headers in row 1
LastRow = .Cells(.Rows.Count, "A").End(xlUp).Row

For iRow = LastRow To FirstRow Step -1
RowsToInsert = .Cells(iRow, "C").Value - 1
If RowsToInsert = 0 Then
'do nothing
Else
.Rows(iRow + 1).Resize(RowsToInsert).Insert
.Cells(iRow + 1, "A").Resize(RowsToInsert, 2).Value _
= .Cells(iRow, "A").Resize(1, 2).Value
.Cells(iRow, "C").Resize(RowsToInsert + 1, 1).Value = 1
End If
Next iRow
End With

End Sub

If you're new to macros, you may want to read David McRitchie's intro at:
http://www.mvps.org/dmcritchie/excel/getstarted.htm

derekrap wrote:

Hello,

I could really use a hand on this one.

I have multiple lines of different products ordered by different
people. In each row in excel it shows the product that was ordered as
well as the quantity and some other information.

What I need to do is expand each row based on the quantity value.
Essentially if someone ordered 4 of a particular product i want a macro
to add three rows below it.

for i.e.

this:

Invoice # / Date / Quantity/
2532434 / 11/02/ 5

would turn into this:

2532434 / 11/02 / 1
2532434 / 11/02 / 1
2532434 / 11/02 / 1
2532434 / 11/02 / 1
2532434 / 11/02 / 1

so the macro will add 4 rows below the 1st to make a total of 5 rows

I essentially want to expand the quantity sold so each row shows a
quantity of 1

can anyone help me out with that?

--
derekrap
------------------------------------------------------------------------
derekrap's Profile: http://www.excelforum.com/member.php...o&userid=20656
View this thread: http://www.excelforum.com/showthread...hreadid=481013


--

Dave Peterson
Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Can no longer instert symbol in text box Rutabaga Excel Discussion (Misc queries) 1 March 25th 09 03:10 PM
Instert Rows Based on Cell Value derekrap Excel Programming 0 November 2nd 05 06:40 PM
Function to del rows based on cell value Reed Excel Worksheet Functions 1 June 7th 05 09:25 PM
Macro / VB / Instert Date Question Spyder Excel Programming 2 March 25th 05 05:31 PM
Deleting Rows based on text in cell & formatting cell based on text in column beside it Steve Excel Programming 4 February 26th 04 03:31 PM


All times are GMT +1. The time now is 07:24 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"