1
我一直在研究複製最後一列並插入新列的代碼,並複製其公式和格式。但是,我需要刪除行6
中的單元格的值到24
,然後從56
到78
刪除創建的新列中的單元格的值。我無法找到一種方法來引用這些單元格以刪除它們的值,任何人都可以幫助我解決這個問題嗎?我的代碼如下:刪除創建的最後一列中的單元格的值
Sub Copy_Column()
Dim LastCol As Integer
With Worksheets("BO_Corretora")
LastCol = .Cells(4, .Columns.Count).End(xlToLeft).Column
Columns(LastCol).Copy
Columns(LastCol + 1).PasteSpecial Paste:=xlPasteFormats
Columns(LastCol + 1).PasteSpecial Paste:=xlPasteFormulas
End With
End Sub