

Creator
2016-09-02
05:07 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
how to find average employee count for a particular month ?
how to find average employee count for a particular month ?
3,913 Views
4 Replies

Partner - Champion III
2016-09-02
05:19 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Count the number of employees at the beginning of the month and at the end of the month. Sum those two counts and divide the result by two.
talk is cheap, supply exceeds demand

Not applicable
2016-09-02
07:03 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Depends what you're trying to do. If you're trying to get an FTE count that matches what accounting does, then you have to use accrued hours to get the right calculation. The formula is:
(Hoursworked + Hoursaccrued)/ days in the month/(days in the year/7)*40
It's a little complicated to get it to work in qlik but doable. Is this what you're trying to do?
3,761 Views

Anonymous
Not applicable
2016-09-02
07:10 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Count(distinct EmpID)
/
No. Of Month

MVP
2016-09-02
07:18 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Or may be this:
Dimension
MonthYear
Expression
Sum(Aggr(Count(DISTINCT EmpID), Date))/Day(MonthEnd(MonthYear))
