SY_DiffAT

Berechnet die Anzahl Arbeitstage zwischen zwei Datums.

Prototype


SY_DiffAT( VonDatum, BisDatum )

Parameter



ParameterTypBedeutung
1

string

Datum im Format YYYYMMDD

2stringDatum im Format YYYYMMDD

Rückgabewert


NummerTypBedeutung
1integerAnzahl 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 )