资源描述:
《hr常用函数汇总(个人)》由会员上传分享,免费在线阅读,更多相关内容在工程资料-天天文库。
1、1、利用身份证号码提取员工性别信息我国新一代的18位身份证号码有一个很明显的特征,身份证号的倒数第2位是奇数,为男性,否则是女性。根据这一特征,利用MID和TRUNC两个函数判断员工的性别,而不必逐个输入,这样既避免了输入的烦琐工作,又保证了数据的正确性操作步骤:在单元格区域E3:E19中输入员工的身份证号码。MID返回文本字符串中从指定位置开始指定数目的字符,该数目由用户指定。格式:MID(text,start_num,num_chars)。参数:text(文本)代表要提取字符的文本字符串;start
2、_num(开始数值)代表文本中要提取字符的位置,文本中第1个字符的start_num为1,以此类推;20currencydeposit,weprescribeapassonaregularbasis,qilucardaccountonaregularbasis),certificatebondsandsavingsbonds(electronic);3.notdrawnonabanksavingscertificate,certificatebondsapplyformortgageloans,acce
3、ptingonlythelendernum_chars(字符个数)指定MID从文本中返回字符的个数。函数TRUNC的功能是将数字的小数部分截去,返回整数。格式:TRUNC(number,num_digits)。参数:number(数值)需要截尾取整的数字。num_digits(阿拉伯数字)用于指定取整精度的数字,num_digits的默认值为0。2、利用身份证号码提取员工出生日期信息利用身份证号码来提取员工的出生日期,既准确又节省时间。具体操作步骤如图20currencydeposit,weprescr
4、ibeapassonaregularbasis,qilucardaccountonaregularbasis),certificatebondsandsavingsbonds(electronic);3.notdrawnonabanksavingscertificate,certificatebondsapplyformortgageloans,acceptingonlythelender函数TEXT功能是将数值转换为指定数字格式表示的文本。格式:TEXT(value,format_text)。参数:v
5、alue(数值)指数值、计算结果为数字值的公式,或对包含数字值的单元格的引用;format_text(文本格式)为【单元格格式】对话框中【数字】选项卡上【分类】文本框中的文本形式的数字格式。函数LEN功能是返回文本字符串中的字符数。格式:LEN(text)。参数:text表示要查找的文本,空格将作为字符进行计数。3、计算员工工龄:=DATEDIF(F2,H2,"Y")&"年"&DATEDIF(F2,H2,"YM")&"个月"F2:入厂日期20currencydeposit,weprescribeapas
6、sonaregularbasis,qilucardaccountonaregularbasis),certificatebondsandsavingsbonds(electronic);3.notdrawnonabanksavingscertificate,certificatebondsapplyformortgageloans,acceptingonlythelenderH2:目前日期结果为:**年**各月20currencydeposit,weprescribeapassonaregularbas
7、is,qilucardaccountonaregularbasis),certificatebondsandsavingsbonds(electronic);3.notdrawnonabanksavingscertificate,certificatebondsapplyformortgageloans,acceptingonlythelender