1
我需要插入行的條件是DQ
列中的單元格非空,那麼我必須插入一個新行,並且將行數據粘貼到新行中數據。我需要根據條件插入行
問題是我無法在匹配列上面插入一行,也不知道如何複製文本。
下面是我的代碼:
Sub Macro()
nr = Cells(Rows.Count, 5).End(xlDown).Row
For r = 4 To nr Step 1
If Not IsEmpty(Cells(r, 121).Value) Then
Rows(r + 1).Insert Shift:=xlDown
Rows(r + 1).Interior.ColorIndex = 16
End If
Next
End Sub