getChangePercentage(文字列インジケーター, オブジェクト fromDate, オブジェクト toDate)

  • リリースバージョン: Washingtondc
  • 更新日 2024年02月01日
  • 読む1読むのに数分
  • 指定された 2 つの日付間のインジケーターのスコアの変化率を返します。

    表 : 1. パラメーター
    名前 タイプ 説明
    インジケーター 文字列 変化率を計算するインジケーターの一意の識別子。
    開始日 オブジェクト 比較の最初の日付。
    toDate オブジェクト 比較の終了日
    表 : 2. 返される内容
    タイプ 説明
    番号 指定された 2 つの日付の間の指定されたインジケーターの変化率。

    例:

    var lastPeriod = new GlideDateTime(score_start.getYear() + '-' + score_start.getMonth() + '-01');
    lastPeriod.addDaysUTC(-1);
    pa.getChangePercentage($[[Number of open incidents]], lastPeriod, score_start);