1
我從來沒有做過任何excel vba程序。我想寫一個vba代碼,這將允許我複製包含第一列上的按鈕的行到新行。在excel vba中複製行內容
我能夠複製行內容但無法複製按鈕。請幫助
我的Excel是象下面這樣: -
按鈕|| DATA || DATA || DATA
這段代碼到目前爲止,我已經寫了:=
Dim Lr As Integer
Dim newLr As Integer
Dim lim As String
Lr = range("A" & Rows.Count).End(xlUp).Row 'Searching last row in column A
newLr = Lr + 1
lim = "B" & newLr & ":" + "D" & newLr
Rows(Lr).Copy
Rows(newLr).Insert Shift:=x1Down
range(lim).ClearContents
沒有這個也沒有工作:( – Rajarshi
什麼是不工作?我對它進行了測試,並使用列A中的按鈕複製該行,如果Lr計算正確。 – sktneer
對我來說不是複製按鈕。並添加一個空行,即使我不清除這些列的內容。不確定發生了什麼 – Rajarshi