J
Jeff
I am exporting data to excel and when my routine comes across a
milestone
For Each t In ActiveProject.Tasks
If Not t Is Nothing Then
Set xlRow = xlRow.Offset(1, 0)
Set xlCol = xlRow.Offset(0, t.OutlineLevel)
xlCol = t.Name
If t.Summary Then
xlCol.Font.Bold = True
End If
It treats it as if it were a summary task and fails to import any of
the details associated with the task. To mak matters worse, if I
remove the designation of milestone from the task, it somehow retains
the property and it gets imported just like a summary task.
Does Project 2003 save this information someplace else. If so can I
get to it and change the flag?
Thanks
milestone
For Each t In ActiveProject.Tasks
If Not t Is Nothing Then
Set xlRow = xlRow.Offset(1, 0)
Set xlCol = xlRow.Offset(0, t.OutlineLevel)
xlCol = t.Name
If t.Summary Then
xlCol.Font.Bold = True
End If
It treats it as if it were a summary task and fails to import any of
the details associated with the task. To mak matters worse, if I
remove the designation of milestone from the task, it somehow retains
the property and it gets imported just like a summary task.
Does Project 2003 save this information someplace else. If so can I
get to it and change the flag?
Thanks