...
公式二:emp_count 是人员分析表,两个模型基于dept_ 和 origin_id 关联
人员总数:[VLOOKSTAT(emp_count,'dept_:eq:{origin_id}','sum','count',default='0')] 这里只需要将部门作为关联条件
性别:[VLOOKSTAT(emp_count,'dept_:eq:{origin_id};employee_gender:ineq:男','sum','count',default='0')] 通过employee_gender:eq:男 过滤男性
用工类型:[VLOOKSTAT(emp_count,'dept_:eq:{origin_id};category:in:1717','sum','count',default='0')] 通过category:in:1717 过滤劳动合同制的人员,这里1717 是该用工类型的ID
本科以上:[VLOOKSTAT(emp_count,'dept_:eq:{origin_id};edu_education:in:本科-硕士研究生-博士研究生','sum','count',default='0')] 通过edu_education:in:本科-硕士研究生-博士研究生 多个条件通过- 关联
35岁以下:[VLOOKSTAT(emp_count,'dept_:eq:{origin_id};employee_age_count:lte:35','sum','count',default='0')] 通过lte 获取年龄小于35的人员
公式三:合计公式
[RANGE_SUM('B5',(0,-1))]
报表标题公式:[DEPART_NAME(CURR_DEPARTMENT)+"统计分析表"]
...