Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migration of unmigrated content due to installation of a new plugin
Sv translation
languageen
Note

It is recommended to get familiar with cumulateFromDate function before proceeding with this tutorial.

The result of this tutorial will be the cumulated value of an indicator (eg. payments) divided by number of months from the beginning of the financial year. This can tell you how the total payments average trend changes during the year.

Note

Changes might be necessary when adding drill-down.

Code Block
def y = dateYear();
def m = dateMonth();
def result;
def int monthTotal;

monthTotal = m + ((y-2011)*12) - 6; // eg. FY starts in July 2011
result = cumulateFromDate('2011-07-01','M_INDICATOR') / monthTotal;

return result;

You can observe result of the applied formula in the following chart.

ilupng
cumulatefrom

Next Steps

Sv translation
languageja
Note

このチュートリアルに進む前に、cumulateFromDate関数を十分参照することをお勧めします。

このチュートリアルの結果は、インジケータの累積値(支払いなど)を会計年度の初めからの月数で割ったものになります。これにより、年間の支払い合計の平均傾向がどのように変化するかがわかります。

Note

ドリルダウンを追加する際に、変更が必要になる場合があります。

Code Block
def y = dateYear();
def m = dateMonth();
def result;
def int monthTotal;

monthTotal = m + ((y-2011)*12) - 6; // eg. FY starts in July 2011
result = cumulateFromDate('2011-07-01','M_INDICATOR') / monthTotal;

return result;

次の表で、適用された式の結果を確認できます。

ilupng
cumulatefrom

次に

Sv translation
languagede


Note

Es wird empfohlen, sich mit der Funktion KumulierenVonDatum vertraut zu machen, bevor Sie mit diesem Tutorial fortfahren.

Das Ergebnis dieses Tutorials ist der kumulierte Wert eines Indikators (z.B. Zahlungen) geteilt durch die Anzahl der Monate ab Beginn des Geschäftsjahres. Dies kann Ihnen Auskunft darüber geben, wie sich der durchschnittliche Trend der Gesamtzahlungen im Laufe des Jahres ändert.

Note

Beim Hinzufügen von Drill-Down können Änderungen erforderlich sein.

Code Block
def y = dateYear();
def m = dateMonth();
def result;
def int monthTotal;

monthTotal = m + ((y-2011)*12) - 6; // eg. FY starts in July 2011
result = cumulateFromDate('2011-07-01','M_INDICATOR') / monthTotal;

return result;

Das Ergebnis der angewandten Formel können Sie in der folgenden Tabelle sehen.

ilupng
cumulatefrom

Nächste Schritte