M
magda
Hi,
I'm trying to change font colour for name of all tasks which have flag1 set
to Yes (yes it is polish "Tak"), but this work in selected cell only
I'm newbe with vba, could someone help me please with following code?
Dim T, Td As Task
For Each T In ActiveProject.Tasks
If Not T Is Nothing Then
If Not T.Summary Then
If T.Flag1 = True Then
For Each Td In ActiveProject.Tasks
FontEx Color:=1
Next Td
End If
End If
End If
Next T
thanks
magda
I'm trying to change font colour for name of all tasks which have flag1 set
to Yes (yes it is polish "Tak"), but this work in selected cell only
I'm newbe with vba, could someone help me please with following code?
Dim T, Td As Task
For Each T In ActiveProject.Tasks
If Not T Is Nothing Then
If Not T.Summary Then
If T.Flag1 = True Then
For Each Td In ActiveProject.Tasks
FontEx Color:=1
Next Td
End If
End If
End If
Next T
thanks
magda