Needtoknow
Board Regular
- Joined
- Apr 21, 2006
- Messages
- 73
Hey All,
I have a code that calls another part of the code that basically draws arrows. But I want the code to look at another sheet called "Task Name" and only at columns to get the From and To cell locations to help draw the arrows.
Task Names
From To
Task A E11 Task B G11
Task B G11 Task C O1
Task B G11 Task D O22
I have no idea how to do it... all I have is this:
For Each Cell In rng
Call DrawArrows(Cells(a, b), Cells(c, d), RGB(0, 0, 255))
Next Cell
I want it to loop through the range, but only for the columns on the Task name sheet and if possible go down the columns named "From" and "To"
Thanks,
Jim
I have a code that calls another part of the code that basically draws arrows. But I want the code to look at another sheet called "Task Name" and only at columns to get the From and To cell locations to help draw the arrows.
Task Names
From To
Task A E11 Task B G11
Task B G11 Task C O1
Task B G11 Task D O22
I have no idea how to do it... all I have is this:
For Each Cell In rng
Call DrawArrows(Cells(a, b), Cells(c, d), RGB(0, 0, 255))
Next Cell
I want it to loop through the range, but only for the columns on the Task name sheet and if possible go down the columns named "From" and "To"
Thanks,
Jim