我在 Excel 电子表格中有一个表格。假设它有两列“Id”和“Name”。使用 VBA,我想使用工作表上的双击事件来捕获当前行中的“Id”和“Name”。
我使用 Intersect 函数来确定我感兴趣的表中是否发生了双击,但我不知道如何使用表列名访问行数据。
IE
Private Sub Worksheet_BeforeDoubleClick(ByVal target As Range, Cancel As Boolean)
Dim user_rge as Range
Set user_rge = Me.Worksheets("Data").Range("Users")
If Not Intersects(user_rge, target) is Nothing Then
Dim id as Integer
Dim name as String
` What goes in here?
End
End Sub