davidpayten
Board Regular
- Joined
- May 24, 2004
- Messages
- 225
Hi All,
I am trying to double click on a cell and then pull back its children via calling a function to pull back the result.
I have the following code, but it does not seem to work:
Private Sub Worksheet_BeforeDoubleClick(ByVal Target As Range, Cancel As Boolean)
currentCell = ActiveCell.Address
Target.Address = Sheets("output").Range(currentCell).Address
x = Target.Address
Call GetChildrenPassString(x)
End Sub
Can someone tell me where I am going wrong??
cheers
Dave
I am trying to double click on a cell and then pull back its children via calling a function to pull back the result.
I have the following code, but it does not seem to work:
Private Sub Worksheet_BeforeDoubleClick(ByVal Target As Range, Cancel As Boolean)
currentCell = ActiveCell.Address
Target.Address = Sheets("output").Range(currentCell).Address
x = Target.Address
Call GetChildrenPassString(x)
End Sub
Can someone tell me where I am going wrong??
cheers
Dave