我正在尝试完成两件事;1) 基于顺序模式插入行(和 A1 中的数字) 2) 在插入行的其余列中插入字符串值“NA”。我正在使用下面的脚本,第 1 部分有效,但第 2 部分将“NA”放在所有列中,而不是工作表中使用的内容。以下是数据示例:
2001 A A A
2002 A A A
2004 A A A
2005 A A A
代码应在 B:D 列中插入 2003 AFTER 2002 并带有“NA”
这是我目前正在使用的脚本:
Sub test()
Dim i As Long, x, r, cell, CRange As Range
Dim InputValue As String
InputValue = "NA"
'test for sequential number
For i = Range("a" & Rows.Count).End(xlUp).Row To 2 Step -1
x = Cells(i, 1) - Cells(i - 1, 1)
If x > 1 Then
Rows(i).Resize(x - 1).Insert
End If
Next
'insert row if not sequential
For Each r In Range("a1", Range("a" & Rows.Count) _
.End(xlUp)).SpecialCells(4).Areas
With r.Cells(1).Offset(-1)
.AutoFill .Resize(r.Rows.Count + 1), 2
End With
'Test for empty cell. If empty, fill cell with value given
For Each cell In Selection
If IsEmpty(cell) Then
cell.Value = InputValue
End If
Next
Next
End Sub