0
Function and Language Reference
Is it possible to create views called "This Month" and "Last Month"? The same formula could be used for "This Year" and "Last Year" as well as "This Week" and "Last Week". I'm trying to create views for donations received this month and last month.
51 replies
-
Um mal meine Frage selbst zu beantworten:
Irgendwie wurde etwas in den letzten Updates geändert und die for-Funktion zählt nicht einmal von 0 bis zum Ende der Tabelle, sondern fängt irgendwie immer wieder an. Weiß auch nicht genau. Jedenfalls schafft es Abhilfe den Maximalwert der Zählvariable vorher festzulegen.
let cnt_FSA := cnt(select FSA);
let cnt_Tasks := cnt(select Tasks);
for i from 0 to cnt_FSA do
for p from 0 to cnt_Tasks do
let q := (create Arbeitsschritte);
q.(Tasks := item(select Tasks, 0 + p));
q.(FSA := item(select FSA, 0 + i));
end
end
Vllt. hilft das ja mal einem Ninoxianer.
Ach und was noch seltsam ist: die "alert"-Funktion geht bei mir nicht bei einem Triggerfeld, aber bei einem normalen Funktionsfeld schon.
Content aside
- 6 yrs agoLast active
- 51Replies
- 19680Views