Hi experts,
I calculate the difference between 2 given dates with the following formula:
temp := (ITEndtermin-ITStarttermin)/(60*60);
tage := @Integer(temp / 24);
stunden := @Modulo (temp;24);
@If(@IsError(temp); ""; @Text(Tage) + " Tag(e) " + @Text(stunden) + " Stunden"
I need to calculate the daydifference without weekends.
Can you help me please?
Thanks in advance
Peer
I calculate the difference between 2 given dates with the following formula:
temp := (ITEndtermin-ITStarttermin)/(60*60);
tage := @Integer(temp / 24);
stunden := @Modulo (temp;24);
@If(@IsError(temp); ""; @Text(Tage) + " Tag(e) " + @Text(stunden) + " Stunden"
I need to calculate the daydifference without weekends.
Can you help me please?
Thanks in advance
Peer