Scorecard components
You can use scorecard components to summarize data in an entire data source without slicing by time or group. Scorecards are not dependent on date or time, so they can display with or without date and time filters. If based on a filter, scorecards retrieve just that result set.
Similar to time and group components, scorecards can support multiple independent series, each retrieved from a different data source if required. You can also set up a calculated series, which performs a mathematical calculation based on one or more of the other series in the component. If you have key performance indicators that require a more complex analysis of the data, a calculated series is recommended.

If you're not already connected to a data source, click the icon in the left navigation pane and connect to one.
1.From the left navigation pane, drag and drop a scoreboard component onto a pane in the layout.
2.Click the icon in the component header and select Component. The Scoreboard Component dialog displays the following options:
• General tab
•Title: Title for the scoreboard component as it will display in the details pane.
•Series: A series list defined for the component. For details about setting up a series, see the section below.
•Output tab
•View: Display method for the series (scoreboard or grid).
• Hide 0's: Hide data that shows only a zero (no real data value) .
•Show title summary: Xtraction creates a title summary of what the component does, along with your own title. If you clear this option, the default summary is removed. For example, the title "Incidents (Last Month)" becomes just "Incidents."
•Show series title: Select whether to show the series title when in scoreboard view.
• Alert rules tab
•Select colors to use in the results triggered by values within the data. Right-click in the columns area and select Add rule to enter an operation, value, colors for text and background, and notes about the rule if needed. Any added notes will display in the component header when you mouse hovers over the notes icon. For details about alerts, see Alerts.
•Note that alert rules at the series level will override alert rules at the component level.
•Notes tab
•Enter explanatory text directly into the blank area, which will display when your mouse hovers over the notes icon for the component. If Show notes is selected for an export, these notes are included in that component export.
3.Click OK to save.
Scoreboard component series
Scoreboards can display multiple, independent series at one time, meaning you can view data from multiple data sources within a single scoreboard component if desired.

If you have more than one defined series, you can sort the list by using the drag and drop icon.
1.Click the icon in the component header and select Component.
2.In the Scoreboard Component dialog > General tab > Series area, right-click and select Add series.
3.The Scoreboard Component Series dialog displays with these options:
•General tab
•Title: Title for the scoreboard series.
•Name: Optional. Name of the series if it's being used within a calculated series.
•Data source: Data source used for this series.
•Summary type/field: Summary condition (options include count, sum, average, min, and max) and the field you want to summarize.
•Output tab
•Value format: Format used when displaying numerical values.
•Visible: Select if you want the series to be visible in the output.
•Filter tab
•Criteria used to filter the data from the data source. Right-click in the blank area to add a filter condition or open a saved filter. For details about filters, see Filters.
•Alert rules tab
•Enables you to select colors to use in the results triggered by values within the data. Right-click in the column area and select Add rule to enter an operation, value, colors for text and background, and notes about the rule if needed. For example, if your data contains the summarized value "Very high," you can define the output to display in red for this value.
•Note that alert rules at the series level will override alert rules at the component level.
4.Click OK to save.
Calculated series
You can define a calculated series that performs a mathematical calculation using values from one or more of the other series in a scorecard component. By doing so, a new series is created, which can provide a more complete analysis of the key performance indicators you're interested in viewing. When using a calculated series, you have the option of hiding the other series used in the calculation.
Several mathematical expressions are available for creating a calculated series, as described below.
For guidance on how to define a calculated series for time, group, and scoreboard components, see the Calculated Series video on the Ivanti community website.

This procedure assumes you already have a scorecard component displayed as part of a dashboard or document.
1.Click the icon in the title bar of the component and select Component.
2.In the Scoreboard Component dialog > General tab > Series area, right-click and select Add calculated series.
3.The Scoreboard Component Series dialog displays with these options:
•General tab
•Title: Title for the series.
•Name: Optional name of the series, useful if you're going to reference this series in another series.
•Expression: Enter a mathematical expression that calculates the required value you're seeking. For details, see "About expressions" below. To ensure your entry is valid, click the icon.
•Output tab
•Value format: Format used when displaying numerical values. For example, Decimal (3) would return a number such as "4.567."
•Visible: If you want to hide any of the series used in the calculation, clear this option.
•Alert rules tab
•Select colors to use in the results triggered by values within the data. Right-click in the columns area and select Add rule to enter an operation, value, colors for text and background, and notes about the rule if needed. For example, if your data contains the summarized value of "Very high," you can define the output to display in red for this value.

Use expressions to calculate the values for your series. Expressions can use values from other series as parameters. Currently, expressions are limited to returning only numerical values.
You can use the following items within an expression:
Parameters
Parameters are case sensitive, and you need to enclose them in square brackets:
•[S1]: Current value for series one.
•[S1_TOTAL]: The total for series one.
Expressions can use values from other series when being evaluated. There are two ways to refer to another series: by using the series index or by using the series name (if set up):
•Series index: The index for the first series is 1 and the second series is 2. For example, when adding two series together: [S1]+[S2]
•Series name: If you've set up the series with a name, you can refer to it by that name in the expression. For example, [INCIDENTS]+[REQUESTS]
Operators
Use operators in between parameters as shown, without spaces:
•Add (+): [S1]+[S2]
•Subtract (-): [S1]-[S2]
•Multiply (*): [S1]*[S2]
•Divide (/): [S1]/[S2]
•Modulus (%): [S1]%[S2]
•Primary ((,)): ([S1]*([S2]+[S3])
Functions
•Abs: Returns the absolute value of a specified number: Abs(-1), Result: 1
•Ceiling: Returns the smallest integer greater than or equal to the specified number: Ceiling(1.5), Result: 2
•Floor: Returns the largest integer less than or equal to the specified number: Floor(1.5), Result: 1
•if: Returns a value based on a condition: if(condition, true-value, false-value) if(True, 1, 2), Result: 1