1
程序的功能是找到第一行有一個空單元格,該單元格的旁邊是需要剪切並粘貼到第26列上一行的數字。在Excel VBA中剪切和粘貼單元格
- 我試圖運行循環遍歷整個工作表並刪除行復制和粘貼。
- 如果裏面已經有數據,將跳過它並繼續。
-The第二種方法是我最有前途的,但我似乎無法找出如何運行單元格的格式(X,1)
(方法一)
Dim x As Integer
x = 1
this = x - 1
rowdelete = x
If Cells(x, 1) = "" Then
Cells(x, 1).Select.Cut
Cells(x - 1, 26).PasteSpecial
Rows([rowdelete]).EntireRow.Delete
End If
(方法二)
Dim x As Integer
x = 1
this = x - 1
rowdelete = x
If Cells(x, 1) = "" Then
Cells(x, 1).Select.Cut
Cells(x - 1, 26).PasteSpecial
Rows([rowdelete]).EntireRow.Delete
End If