reference parent position
This commit is contained in:
parent
144c0f85db
commit
0da2984907
@ -1,5 +1,7 @@
|
|||||||
Private Sub Worksheet_BeforeDoubleClick(ByVal Target As Range, Cancel As Boolean)
|
Private Sub Worksheet_BeforeDoubleClick(ByVal Target As Range, Cancel As Boolean)
|
||||||
|
|
||||||
|
'Exit Sub
|
||||||
|
|
||||||
Cancel = True
|
Cancel = True
|
||||||
|
|
||||||
Dim i As Long
|
Dim i As Long
|
||||||
@ -29,7 +31,7 @@ Private Sub Worksheet_BeforeDoubleClick(ByVal Target As Range, Cancel As Boolean
|
|||||||
|
|
||||||
For i = 1 To ci.Count
|
For i = 1 To ci.Count
|
||||||
sql = sql & vbCrLf & "AND "
|
sql = sql & vbCrLf & "AND "
|
||||||
sql = sql & cd(piv_pos(cd, i)).Name & " = '" & ci(i).Name & "'"
|
sql = sql & cd(piv_pos(cd, ci(i).Parent.Position)).Name & " = '" & ci(i).Name & "'"
|
||||||
Next i
|
Next i
|
||||||
|
|
||||||
MsgBox (sql)
|
MsgBox (sql)
|
||||||
|
Loading…
Reference in New Issue
Block a user