J
Joy
in my macro, I need to set Text 1 of each task ""
I use
For i = 1 To proj.Tasks.Count
proj.Tasks(i).Text1 = ""
Next
for very large files whoes number of tasks is > 50000, it is very slow to do
the update.
is it possible to have the whole column set at once? how to make it faster?
I use
For i = 1 To proj.Tasks.Count
proj.Tasks(i).Text1 = ""
Next
for very large files whoes number of tasks is > 50000, it is very slow to do
the update.
is it possible to have the whole column set at once? how to make it faster?