将Excel电子表格中的行复制到新电子表格中L列中值的次数

时间:2011-02-02 22:32:53

标签: excel vbscript

我有一个包含抽奖信息的Excel电子表格。

每行都有一个买票的人的信息。

问题是我需要制作一个新的电子表格(最终,我需要将其合并到标签中),每张票一行,但如果一个人买了2张票,他们的信息只在一行中原始电子表格,带有“L”列中的票证数量。

所以我需要一个宏来查看L列中的值,并将该行复制到新的电子表格L次 - 如果他们买了1张票,而L列中的值是1,它会复制它1次,如果他们买了3张票,并且L栏中的值是3,它将复制3次。

有人可以告诉我怎么做这个吗?

如果有一种方法可以在邮件合并期间执行此操作,那应该可以工作2,我只是认为首先制作新电子表格更容易,然后只需从新工作表中制作标签。

谢谢!

1 个答案:

答案 0 :(得分:0)

我最终在网站here上找到了一些代码,并根据我的需要对其进行了修改。 这就是我正在使用的:

Sub MakeTickets()
Dim X As Long, Z As Long, Qty As Long, Rw As Long
Dim StartRow As Long, LastRow As Long
Dim Source As String, Destination As String
'Define the variables below
StartRow = 2 'the row to start from in the source sheet
FirstDestination = 1 'the row to start from in the destination sheet
FirstCell = "A" 'the first column in each row that you want to copy
LastCell = "O" 'the last column in each row that you want to copy
Source = "Sold" 'source sheet name
Destination = "Tickets" ' destination sheet name
QtyClmn = "L" 'column to get the quantity from
'Until here
Rw = FirstDestination
With Worksheets(Source)
LastRow = .Cells(.Rows.Count, FirstCell).End(xlUp).Row
For X = StartRow To LastRow
Qty = Cells(X, QtyClmn).Value
For Z = 1 To Qty
Rw = Rw + 1
Worksheets(Destination).Range(FirstCell & Rw & ":" & LastCell & Rw).Value = .Range(FirstCell & X & ":" & LastCell & X).Value
Next
Next
End With
End Sub