Sep 7, 2005 #1 YunkerPwC IS-IT--Management Sep 7, 2005 1 US I am looking to see how to find task assingment ID's through either project web or through project pro, we are running version 2003.
I am looking to see how to find task assingment ID's through either project web or through project pro, we are running version 2003.
Sep 7, 2005 #2 PDQBach IS-IT--Management Sep 26, 2003 1,523 US In VBA (code not tested) dim aa as assignment dim tt as task dim rr as resource for each tt in activeproject.tasks for each aa in tt.assignments debug.print aa.index next next The aa.index is the number you want. Upvote 0 Downvote
In VBA (code not tested) dim aa as assignment dim tt as task dim rr as resource for each tt in activeproject.tasks for each aa in tt.assignments debug.print aa.index next next The aa.index is the number you want.