getChangePercentage(String indicator, Object fromDate, Object toDate)
Returns the percentage of change in the score of an indicator between two specified dates.
| Name | Type | Description |
|---|---|---|
| indicator | String | Unique identifier of the indicator for which to calculate the percentage of change. |
| fromDate | Object | Initial date of the comparison. |
| toDate | Object | End date of the comparison |
| Type | Description |
|---|---|
| Number | Percent change of the specified indicator between the two specified dates. |
Example:
var lastPeriod = new GlideDateTime(score_start.getYear() + '-' + score_start.getMonth() + '-01');
lastPeriod.addDaysUTC(-1);
pa.getChangePercentage($[[Number of open incidents]], lastPeriod, score_start);