Duct Occupancy

Configuration Instructions

In the ArcFM Conduit Configuration dialog, you can add a field to capture and manage duct occupancy.

Then, you can change the Duct’s label expression to display occupancy instead of duct number.

TIP: Alternatively, you could configure the Stored Display to give the user a choice as to label by Duct Name or Duct Occupancy. Or, you could write an expression that states to display the Duct Occupancy, but if it is null, display the Duct Name instead. The following expression is one example to achieve this:
Function FindLabel ( [DuctName] , [DuctOccupancy]  )
    if IsNull( [DuctOccupancy]) OR Trim( [DuctOccupancy] ) = "" then
        FindLabel = [DuctName] 
    else
        FindLabel = [DuctOccupancy] 
    end if
End Function


Continue reading the Configuration Instructions to learn more.

QR Code is a registered trademark of DENSO WAVE INCORPORATED in Japan and other countries.

Was this helpful?