I am creating a self-adding absentee calendar for employees. I am having a problem with a formula; =SUMIF((I7>(TODAY))(Y26*M$8)). This means that if the date entered in I7 is greater then today, vacation should accrue for hours worked times rate.
Maybe this...I am creating a self-adding absentee calendar for employees. I am having a problem with a formula; =SUMIF((I7>(TODAY))(Y26*M$8)). This means that if the date entered in I7 is greater then today, vacation should accrue for hours worked times rate.
Yes the =IF would be easier. However I did find that my error lies with the fact the I7 will never be greater then today, since I7 represents the employees 90 days waiting period. So I tried, =IF(I7>E7())*(Y26*M8), where E7 represents hire date.
=IF(I7<=TODAY,Y26*M$8,0)