getChangePercentage(String indicator, Object fromDate, Object toDate)

  • Freigeben Version: Australia
  • Aktualisiert 12. März 2026
  • 1 Minute Lesedauer
  • Returns the percentage of change in the score of an indicator between two specified dates.

    Tabelle : 1. Parameters
    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
    Tabelle : 2. Returns
    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);