Very specific question. I got a task to learn vba, but i cant really find anything for my problem.
screenshot of how it looks in project
Basically if the column "Sammelvorgang" says "Nein", the Column "Text7" should contain the Value of "Nr." of that row
Im looking through the basics of VBA but i cant find a solution to target a specific column or a specific row.
Sub schedule_Number()
Dim tsk As Task
For Each tsk In ActiveProject.Tasks
If Not (tsk Is Nothing) Then
If (tsk.Sammelvorgang.Value = "Nein") Then
tsk.Text7 = tsk.Nr
End If
End If
Next tsk
End Sub
Thanks for the help