早上好!從excel文件複製頭文件(Excel VBA代碼)
我正在一個excel文件中,我想從一張紙上覆制標題並將其粘貼在另一張紙的標題之後。一個例子是:
的片材1具有數據標題爲:
表2具有數據標題爲:
的問題是,在兩個標頭數每月犯規remian恆定。因此,我希望thye代碼(VBA)將標題從A1開始複製到sheet2的最後使用單元格,並將其粘貼到sheet1的最後一個使用單元格之後。這是我寫的我所知,有關VBA代碼:
Sub LastColumnInOneRow()
'Find the last used column in a Row: row 1 in this example
Dim LastCol As Integer
Dim LastCell As String
Dim last As Long
Dim rng As Range
With Sheets("Data")
LastCol = .Cells(1, .Columns.Count).End(xlToLeft).Column
Set rng = Sheets("Data").Cells
LastCell = last(3, rng)
Range("A1" & LastCell).Select
Selection.Copy
End With
End Sub
我知道有什麼不對的,因爲它沒有按運行這段代碼。任何人都可以幫助解決這個問題。
謝謝!
好了,你的*帶*號塊丟失它的*結束與*和你的線** LastCell =最後(3,rng)**除非有一個叫* last *的函數,我不知道!看看我的代碼答案 –