Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All,
I want to calculate percentage for employee absenteeism.
Can you please tell me what would be the different ways for achieving the same.
Thanks
To format in %
In tables and charts you can use Number tab
In text object
NUM(YourExpression, '#,##0.00%')
or
NUM(YourExpression, '#,##0%')
Can you please elaborate little more on your requirements?
There is employee absentee count for number of employee who are absent on particular day.
I need to show percentage count of absent employee for the same.
Thanks,
Deepak
COUNT({<Flag = {'Absent'}>}Employee)/COUNT(Total {<Flag = {'Absent'}>}Employee)
or
COUNT({<Flag = {'Absent'}>}Employee)/COUNT(Total Employee)
is this what you are looking for?
Thanks manish
but how to format number in this case.
To format in %
In tables and charts you can use Number tab
In text object
NUM(YourExpression, '#,##0.00%')
or
NUM(YourExpression, '#,##0%')