Din partner for helthetlig helse
Et tilbud for deg som vil ta vare på helsa - uten å måtte dra på treningssenter.
The calculations are made as follows: 1) The total number of workdays per year is set to 260. 2) The annual cost with current sick leave (kostnadNavaerende) is calculated as: ansatte * kostnad * (sykefravaer / 100) * 260 - ansatte: number of employees - kostnad: daily cost per employee - sykefravaer: current sick leave percentage 3) The annual cost with desired sick leave (kostnadOnsket) is: ansatte * kostnad * (onsket / 100) * 260 - onsket: desired sick leave percentage 4) The savings (besparelse) is the difference between the two, but never less than zero: Math.max(0, kostnadNavaerende - kostnadOnsket) So, the calculator estimates how much you save per year if you reduce sick leave from the current to the desired percentage, based on the number of employees and daily cost per employee.