SY_DiffAT
- dw
Owned by dw
Berechnet die Anzahl Arbeitstage zwischen zwei Datums.
Prototype
SY_DiffAT( VonDatum, BisDatum )
Parameter
Parameter | Typ | Bedeutung |
---|---|---|
1 | string | Datum im Format YYYYMMDD |
2 | string | Datum im Format YYYYMMDD |
Rückgabewert
Nummer | Typ | Bedeutung |
---|---|---|
1 | integer | Anzahl Arbeitstage |
Hinweise
Von-Datum und Bis-Datum sind in der Anzahl Arbeitstage inklusive.
- Ist das Von- oder Bis-Datum leer (oder tritt ein sonstiger Fehler auf), wird 0 zurückgeliefert.
Beispiel
-- Gibt die Anzahl Arbeitstage zwischen Von- und Bis-Datum im Protokoll aus local vonDatum = "20210518" local bisDatum = "20210526" local anzahlAT = SY_DiffAT( vonDatum, bisDatum ) SY_Proto( "Anzahl Arbeitstage: " .. anzahlAT )