我本來想說用
Private Sub Worksheet_Calculate()
Dim E As Range
Dim P As Integer
For Each E In Range("B2:B13)
P = Sheets(E.Text).Range("D65536").End(xlUp).Row + 1
Sheets(E.Text).Range("D" & P) = E.Offset(0, 1)
Next
Set E = Nothing
End Sub
回復 3#ko310kmo M = Worksheets("sheet1").Range("B65536").End(xlUp).Row
For Each E In Range("B2:B" & M)
P = Sheets(E.Text).Range("J65536").End(xlUp).Row + 1
Sheets(E.Text).Range("J" & P) = E.Offset(0, 1)
Next
如此是可以在Sheets(E.Text)的J欄中,往下記錄資料沒錯阿.
但這樣它的p值卻無法每個工作表分開計算 不了解!!, 可再解釋嗎?作者: ko310kmo 時間: 2011-4-29 23:47