回復 2#GBKEE
GBKEE前輩你好!
良師!謝謝!插入程式你遺漏了下拉上一列資料
小弟熬夜拼湊如下
Sub 插入()
Dim R As Range
Set R = ActiveCell
If R.Column >= 5 And R.Column <= 31 Then
If R.Row > 1 And Cells(Rows.Count, R.Column).End(xlUp).Row >= R.Row Then
Range("E" & R.Row & ":AE" & R.Row).Insert
End If
Set R = ActiveCell
Range("E" & R.Row - 1 & ":AE" & R.Row - 1).Copy
ActiveCell.Select
ActiveSheet.Paste
Application.CutCopyMode = False
End If
End Sub
雖然可以使用,但總是拼湊出來的還是有勞良師指導
正確的方式,糾正往後學習的方向真是辛苦你囉!!
謝謝再三!!作者: GBKEE 時間: 2010-7-11 16:20