Skip to content
  • There are no suggestions because the search field is empty.

How to Make a Cost/Project Property Print in the Presence of an Overline

DESTINI Estimator Cloud reports include a Cost/Unit summary in the Executive Summary and in line-item grouped rows. This summary helps users compare costs against a selected project property value or quantity, such as Total Building Area.
Cost/Unit Summary
If an overline quantity is defined for line-item grouped rows in the Estimate View, reports display the overline quantity instead of a project property. In the following example, an overline quantity is defined for Masterformat Level 1, so the report displays the overline quantity instead of the project property.

You can change the report to use a project property instead of the overline quantity.

Use the following procedure to make line-item grouped rows use a Cost/Project property in the Owners Report.

Update the Executive Summary

    1. Open an estimate in DESTINI Cloud Estimator.
    2. Navigate to Home > New Report. Report Designer opens.
    3. Click File > Open.
    4. Navigate to the folder with the report template file (.repx) you want to modify.
    5. Click the .repx file to open it.
    6. In the Report Explorer panel on the right side of your screen, search for and select DetailReport5.
      Search for DetailReport5
    7. In Designer in the middle of your screen, locate the selected detail report from the previous step.
      The DetailReport5 band in Designer
    8. Select the first quantity cell under the Quantity column header.
      Select the first quantity cell
    9. Click the Function button to the right of the cell.
      Click the Function button
    10. Replace the Text Expression with the following and click OK:
      [ProjectProperties].[CostPerUnitSummary_PropertyValue]

      Enter the new expression
    11. In Designer, click the cell to the right of the cell you just configured and then click the Function button.
      Click the cell to the right of the cell you just configured
    12. Replace the Text Expression with the following and click OK:
      ?CostPerUnitSummary_Unit

      Paste the new expression
    13. In Designer, click the cell to the right of the cell you just configured and then click the Function button.
      Click the cell to the right of the cell you just configured
    14. Replace the Text Expression with the following and click OK:

      Iif(

      IsNullOrEmpty(?WBSProperty1_Parameter), '',

      NOT 'Level 1 Group' IN (?IncludedCostPerUnitSummaries), '',

      sumSum([TotalCost] / [ProjectProperties].[CostPerUnitSummary_PropertyValue]))


      Replace the expression

Update the Line Items Detail Report – Quantity Cells

  1. In Report Explorer, search for and select Details_LineItems.
    Search for Details_LineItems
  2. In Designer, locate the detail report selected in the previous step.
    Select the section in Designer
  3. Select the first quantity cell under the Quantity column header and then click the Function button.
    Click the cell in the Quantity column
  4. Replace the Text Expression with the following and click OK:
    [ProjectProperties].[CostPerUnitSummary_PropertyValue]
  5. Repeats Step 3 and 4 to replace the Text Expression for each of the remaining quantity cells shown in the following screenshot. Skip the [Description] row, as shown here:
    Replace the expression for all cells in the column except the [Description] cell

    Update the Line Items Detail Report - Unit of Measure Cells 

      1. Repeat the previous procedure for each cell in the next column to the right. 
      2. Replace the Text Expression for each cell with the following and click OK:
        ?CostPerUnitSummary_Unit

        Replace the expression in the next column

      Update the Line Items Detail Report – Unit Cost Cells

        1. Replace the Text Expression for each Unit Cost cell shown in the following screenshot.
          Replace the expression for each cell 
        2. Replace the expression for each cell with the expression shown in the following table:

          Cell

          Text Expression

          WBS Property 1 Group Header

          Iif(

          NOT 'Level 1 Group' IN (?IncludedCostPerUnitSummaries), '',

          NOT ?IncludeAllLineItemDetails, sumSum([TotalCost] / [ProjectProperties].[CostPerUnitSummary_PropertyValue]),

          sumSum(Iif([WBSProperty1] in (?WBSProperty1_RollUp), 1, 0)) != 0, sumSum([TotalCost] / [ProjectProperties].[CostPerUnitSummary_PropertyValue]),

          '')

          WBS Property 2 Group Header

          Iif(

          NOT 'Level 2 Group' IN (?IncludedCostPerUnitSummaries), '',

          NOT ?IncludeAllLineItemDetails, sumSum([TotalCost] / [ProjectProperties].[CostPerUnitSummary_PropertyValue]),

          sumSum(Iif([WBSProperty2] in (?WBSProperty2_RollUp), 1, 0)) != 0, sumSum([TotalCost] / [ProjectProperties].[CostPerUnitSummary_PropertyValue]),

          '')

          WBS Property 3 Group Header

          Iif(

          NOT 'Level 3 Group' IN (?IncludedCostPerUnitSummaries), '',

          NOT ?IncludeAllLineItemDetails, sumSum([TotalCost] / [ProjectProperties].[CostPerUnitSummary_PropertyValue]),

          sumSum(Iif([WBSProperty3] in (?WBSProperty3_RollUp), 1, 0)) != 0, sumSum([TotalCost] / [ProjectProperties].[CostPerUnitSummary_PropertyValue]),

          '')

          WBS Property 4 Group Header

          Iif(

          NOT 'Level 4 Group' IN (?IncludedCostPerUnitSummaries), '',

          NOT ?IncludeAllLineItemDetails, sumSum([TotalCost] / [ProjectProperties].[CostPerUnitSummary_PropertyValue]),

          sumSum(Iif([WBSProperty4] in (?WBSProperty4_RollUp), 1, 0)) != 0, sumSum([TotalCost] / [ProjectProperties].[CostPerUnitSummary_PropertyValue]),

          '')

          Line Item’s Row

          Skip, leave as-is

          WBS Property 4 Group Footer

          Iif(

          NOT 'Level 4 Group' in (?IncludedCostPerUnitSummaries), '',

          sumSum([TotalCost] / [ProjectProperties].[CostPerUnitSummary_PropertyValue]))

          WBS Property 3 Group Footer

          Iif(

          NOT 'Level 3 Group' IN (?IncludedCostPerUnitSummaries), '',

          sumsum([TotalCost] / [ProjectProperties].[CostPerUnitSummary_PropertyValue]))

          WBS Property 2 Group Footer

          Iif(

          NOT 'Level 2 Group' in (?IncludedCostPerUnitSummaries), '',

          sumSum([TotalCost] / [ProjectProperties].[CostPerUnitSummary_PropertyValue]))

          WBS Property 1 Group Footer

          iif(

          NOT 'Level 1 Group' in (?IncludedCostPerUnitSummaries), '',

          sumsum([TotalCost] / [ProjectProperties].[CostPerUnitSummary_PropertyValue]))

        3. Save and run your report.

      Related Articles