Share via


EnterpriseMultiValuen Property

Returns or sets the value or multiple values of its corresponding Enterprise Resource Outline Code for a resource. The n placeholder can be a number from 20 to 29. Read/write String.

Syntax

expression.EnterpriseMultiValuen

expression     Required. An expression that returns a Resource object.

Remarks

This property is available only in Microsoft Office Project Professional   2003. Values 20 through 29 are reserved for Enterprise Multi-Value codes.

Example

The following example assumes that the Enterprise Multi-Value code 20 is defined to hold skills. It separates the skills into individual array elements and displays each skill to the immediate window.

Sub PrintEnterpriseMultiValue20(objResource As Resource)

   Dim varSkills As Variant
   Dim intIndex As Integer
    
   varSkills = Split(objResource.EnterpriseMultiValue20, _
      Application.EnterpriseListSeparator)
         
      For intIndex = LBound(varSkills) To UBound(varSkills)
      Debug.Print varSkills(intIndex)
   Next
End Sub

Applies to | Resource Object, Resources Collection Object