Currently, the Metrics list has only been added to the Project Lite, Project Standard, Project Structured and Project Office templates. This topic describes how to go about adding the list to another template or project.

Add the Metrics List

  1. Navigate to the site in question and click Settings | Add an App.
  2. Enter Metrics in the search box and hit Enter on your keyboard.
  3. Click Project Metrics (BrightWork).
  4. Enter a name for the list and click Create.

Add Metrics to List

First, review the Supplied Metrics to decide what sort of metrics you want in your project or template.

If you are adding metrics to template that uses the SharePoint Project Tasks list, export and import from the Project List, Project Standard or Project Structured template.

If you are adding metrics to Project Office template, export and import from the new Project Office template.

Manually add your own Calculated Number, Manual Number, Manual Date or Calculated Date metrics.

Update Customized Project Summary Reports

If your templates use the out-of-the-box Project Summary reports, then they will automatically pick up the metric items you imported to the Metrics list and you do not have to do anything else; however, if your template uses a customized Project Summary report, then you will have to add some code to it to pick up the imported metrics.

To update your Customized Project Summary Reports for metrics:

  1. Copy this code snippet to your clipboard.

    <ProjectMetrics>

    <Metric id="Health" indicatorColumn="HealthIcon" />

    <Metric id="Time" indicatorColumn="TimeIcon" metricValueColumn="FinishDateCurrent" />

    <Metric id="Cost" indicatorColumn="CostIcon" metricValueColumn="CurrentCost" />

    <Metric id="Quality" indicatorColumn="QualityIcon" />

    <Metric id="Scope" indicatorColumn="ScopeIcon" />

    <Metric id="Risk" indicatorColumn="RiskIcon" />

    <Metric id="Issues" indicatorColumn="IssuesIcon" />

    <Metric id="TeamSatisfaction" indicatorColumn="TeamSatisfactionIcon" />

    <Metric id="CustomerSatisfaction" indicatorColumn="CustomerSatisfactionIcon" />

    <Metric id="Process" indicatorColumn="ProcessIcon" />

    <Metric id="PlannedStartDate" metricValueColumn="PlannedStartDate" />

    <Metric id="PlannedFinishDate" metricValueColumn="PlannedFinishDate" />

    <Metric id="ActualStartDate" metricValueColumn="ActualStartDate" />

    <Metric id="ActualFinishDate" metricValueColumn="ActualFinishDate" />

    <Metric id="DateDue" metricValueColumn="DateDue" />

    <Metric id="PlannedWork" metricValueColumn="PlannedWork" />

    <Metric id="EstWorkToComplete" metricValueColumn="EstWorkToComplete" />

    <Metric id="ActualWork" metricValueColumn="ActualWork" />

    <Metric id="EstWorkAtCompletion" metricValueColumn="EstWorkAtCompletion" />

    <Metric id="PlannedCost" metricValueColumn="PlannedCost" />

    <Metric id="EstCostToComplete" metricValueColumn="EstCostToComplete" />

    <Metric id="ActualCost" metricValueColumn="ActualCost" />

    <Metric id="PercentComplete" metricValueColumn="PercentComplete" />

    <Metric id="PercentWorkComplete" metricValueColumn="PercentWorkComplete" />

    </ProjectMetrics>

  2. Navigate to your Site Collection home page and click Site Contents.
  3. Click BrightWork Reporter Library
  4. Click Library | Edit Library.

  5. Click Allow.
  6. Click All Files | BrightWork Reporter Library.

  7. Click the Project Summary XML file that you want to edit.
  8. Click Edit File.

  9. Scroll down to the bottom of the page and paste the code snippet between the </ListQueryTemplates> tag and the </ListItemQuery> tag.

  10. Save and close the file.

Hide Columns in Project Statement

If a certain Metric item exists in a site, it will take the place of the Project Statement columns in Project Summary reports in the site (see here for more information on this).

See Supplied Metrics to understand which metrics do this.

Hide the redundant columns in the Project Statement to avoid any confusion that might arise out of data in these columns not appearing in Project Summary reports.

Was this article useful?

Back to Top