R
Ruth
My goal is to move the activecell to the first empty task in the
project, in other words to the end of the project plus one. This is
what I've tried so far:
Dim t As Task
Dim num As Long
For Each t In ActiveProject.Tasks
num = t.UniqueID
If num = 0 Then
EditGoTo ID:=ActiveProject.Tasks(num).UniqueID
Call openpfile
Call buildparrays
End If
Next t
Project nevers finds a unique id of 0(zero) plus I've tried
NOT(isnumeric(t))
and I've also tried
t.name = ""
Any suggestions, your help is greatly appreciated!
project, in other words to the end of the project plus one. This is
what I've tried so far:
Dim t As Task
Dim num As Long
For Each t In ActiveProject.Tasks
num = t.UniqueID
If num = 0 Then
EditGoTo ID:=ActiveProject.Tasks(num).UniqueID
Call openpfile
Call buildparrays
End If
Next t
Project nevers finds a unique id of 0(zero) plus I've tried
NOT(isnumeric(t))
and I've also tried
t.name = ""
Any suggestions, your help is greatly appreciated!