'日期转换星座函数,参数是日期型 function astro(birth) astro="" if birth="" or not isdate(birth) Then exit function birthmonth=month(birth) : if birthmonth<10 then birthmonth="0" & birthmonth birthday=day(birth) : if birthday<10 then birthday="0" & birthday birth=trim(birthmonth & birthday) '重整月日,0903型
astro="摩蝎座" '这个是跨年的,不好对比,先默认 for i_ls=0 to ubound(rAstro)-2 rls2=split(rAstro(i_ls) & "*","*") if birth>=rls2(1) and birth<=rls2(2) then astro=rls2(0) exit for end if next end function