PRJ98: Resources Not Removed When You Stop Resource SharingID: q185297
|
In Microsoft Project 98, when you stop sharing resources from a resource pool, resources that are not assigned in the active project remain in the list of resources for the active project.
To work around this behavior, use either of the following methods.
http://www.microsoft.com/supportnet/refguide/Use the following macro to delete any resource that is not assigned to a task:
Sub NoAssignments()
Dim R As Object
For Each R In ActiveProject.Resources
If Not R Is Nothing Then
If R.Assignments.Count = 0 Then
R.Delete
End If
End If
Next R
End Sub
For additional information about getting help with Visual Basic for
Applications, please see the following article in the Microsoft Knowledge
Base:
Q163435 VBA: Programming Resources for Visual Basic for Applications
Microsoft has confirmed this to be a problem in the versions of Microsoft
Project listed above.
This problem was corrected in Microsoft Project 98 for Windows, Service
Release 1 (SR-1).
For additional information about obtaining and installing SR-1, please see
the following article in the Microsoft Knowledge Base:
ARTICLE-ID: Q185102
TITLE : PRJ98: How to Obtain and Install MS Project 98 SR-1
Additional query words:
Keywords : kbdta projwin
Version : WINDOWS:98
Platform : WINDOWS
Issue type : kbbug
Last Reviewed: July 13, 1999