Hi Guys,
I am picking up from an old thread here ww.mrexcel.com/forum/<wbr>showthread.php?t=50484
I'm trying to extract data from a worksheet that has activities represented as text in cells, and dependencies between activities represented by default straight arrow shapes going from one cell to another.
so this looked promising...
For Each sShape In ActiveSheet.Shapes
Set tl = sShape.TopLeftCell
Set br = sShape.BottomRightCell
until I realised this is ambiguous depending on whether the arrow is orientated Bottom Left to Top Right or Top Left to Bottom Right. Anybody know how to extract the start and finish point (or cell) of an arrow in a worksheet please?
Any workarounds, hints, code much appreciated. A step forward would be establishing the arrow orientation.
Cheers
Ian
I am picking up from an old thread here ww.mrexcel.com/forum/<wbr>showthread.php?t=50484
I'm trying to extract data from a worksheet that has activities represented as text in cells, and dependencies between activities represented by default straight arrow shapes going from one cell to another.
so this looked promising...
For Each sShape In ActiveSheet.Shapes
Set tl = sShape.TopLeftCell
Set br = sShape.BottomRightCell
until I realised this is ambiguous depending on whether the arrow is orientated Bottom Left to Top Right or Top Left to Bottom Right. Anybody know how to extract the start and finish point (or cell) of an arrow in a worksheet please?
Any workarounds, hints, code much appreciated. A step forward would be establishing the arrow orientation.
Cheers
Ian