所以我很熟悉爲工作表事件引用工作表範圍,如雙擊。在這種情況下,我期待在行標題被雙擊而不是單元格時引用。它仍然是特定於工作表,但到目前爲止我還沒有成功。控制行標題的雙擊事件
我有上雙擊做不同事件的多個範圍,所以我使用類似於下面的示例代碼:
Private Sub Worksheet_BeforeDoubleClick(ByVal Target As Range, Cancel As Boolean)
Dim rWatchRange As Range
Dim sWatchRange As Range
Set rWatchRange = Range("A5:A1000")
'I somehow need it to recognize if the row header is
'double clicked between row 5 and 1000 to fire off the second sub
Set sWatchRange = Range("5:1000")
If Not Application.Intersect(Target, rWatchRange) Is Nothing Then
Run "aFormattingSub"
End If
If Not Application.Intersect(Target, sWatchRange) Is Nothing Then
Run "aSubToInsertNewLineAndGroupWithRowAbove"
End If
End Sub
我不知道如果有一個工作表的參考,應用參考或設置我知道的Excel可以做到這一點。
對不起,我聽不懂你的問題 – 2014-09-05 07:40:49