我正在寻求帮助在 VBA 中创建新行。A:C 列是一般项目,D:F 列是 A:C 列中的 VBA 公式驱动值。(基本上是 If Then 语句)
为了进行分析,我们的系统需要满足每个标准的单个行项目。第 1 行符合两个标准;“查询”和“高”。所以我需要在下面插入一个新行,从第 1 行 A:C 复制数据,然后在 D 列中输入“High”。这样,“Inq”和“High”就有一行数据。
该过程将针对每一行重复,不包括新添加的行。抱歉,这可能有点棘手,但我会尽我所能提供帮助。我是 Stackoverflow 的新手,所以我无法发布我的桌子的图片。
----下面是更新----
下面的代码非常适合第 19 列。它插入了行,在新行中插入了值,并将“Lead”放在最后一列。
Sub AddRow()
Dim RowIndex As Long
Dim Delta As Long
RowIndex = 2
Do While Sheets("WeeklyReport").Cells(RowIndex, 1).Value <> ""
Delta = 0
If Sheets("WeeklyReport").Cells(RowIndex, 19).Value = "Lead" Then
' Inserts new row
Sheets("WeeklyReport").Cells(RowIndex + Delta + 1, 1).EntireRow.Insert
' Takes cells value from row above and enters value in new row
Sheets("WeeklyReport").Range(Cells(RowIndex + 1, 1), Cells(RowIndex + 1, 17)).Value = Sheets("WeeklyReport").Range(Cells(RowIndex, 1), Cells(RowIndex, 17)).Value
' Puts rating value in last column
Sheets("WeeklyReport").Range(Cells(RowIndex + 1, 18), Cells(RowIndex + 1, 18)).Value = "Lead"
Delta = Delta + 1
End If
RowIndex = RowIndex + Delta + 1
Loop
End Sub
由于我在 RowIndex 中有多个潜在值,我假设我可以复制第一个 If 语句,为下一列修改它,一切都会正常工作(参见下面的代码)。当我运行它时,它插入了两行,只有一行复制下来,另一行空白。
问题似乎是每个 RowIndex 是否有多个值。我将有可能为每个 RowIndex 生成多个值,我想在其中为每个值创建一个单独的行。请参见代码下方的示例。
这是我一直在使用 Sub AddRow() 的代码
Dim RowIndex As Long
Dim Delta As Long
RowIndex = 2
Do While Sheets("WeeklyReport").Cells(RowIndex, 1).Value <> ""
Delta = 0
If Sheets("WeeklyReport").Cells(RowIndex, 19).Value = "Lead" Then
' Inserts new row
Sheets("WeeklyReport").Cells(RowIndex + Delta + 1, 1).EntireRow.Insert
' Takes cells value from row above and enters value in new row
Sheets("WeeklyReport").Range(Cells(RowIndex + 1, 1), Cells(RowIndex + 1, 17)).Value = Sheets("WeeklyReport").Range(Cells(RowIndex, 1), Cells(RowIndex, 17)).Value
' Puts rating value in last column
Sheets("WeeklyReport").Range(Cells(RowIndex + 1, 18), Cells(RowIndex + 1, 18)).Value = "Lead"
Delta = Delta + 1
End If
If Sheets("WeeklyReport").Cells(RowIndex, 20).Value = "HP" Then
' Inserts new row
Sheets("WeeklyReport").Cells(RowIndex + Delta + 1, 1).EntireRow.Insert
' Takes cells value from row above and enters value in new row
Sheets("WeeklyReport").Range(Cells(RowIndex + 1, 1), Cells(RowIndex + 1, 17)).Value = Sheets("WeeklyReport").Range(Cells(RowIndex, 1), Cells(RowIndex, 17)).Value
' Puts rating value in last column
Sheets("WeeklyReport").Range(Cells(RowIndex + 1, 18), Cells(RowIndex + 1, 18)).Value = "HP"
Delta = Delta + 1
End If
RowIndex = RowIndex + Delta + 1
Loop
End Sub
示例值 - 下面不是代码,也没有在宏中使用,仅作为示例
Example: (RowIndex) A1-A17 Column 19 = "Lead", Column 20 = "HP", Column 21 = "QL"
Output: (RowIndex) A1-A17 Column 18 = "Lead"
(RowIndex) A1-A17 Column 18 = "HP"
(RowIndex) A1-A17 Column 18 = "QL"