I would like to have a formula that would total the number of years and weeks an employee work by me entering the start date and todays date. Can I do this?
=DATEDIF(B20,TODAY(),"y")&" yrs and "&
INT(DATEDIF(B20,TODAY(),"yd")/7)&" weeks"
Will give the number of whole years and full weeks since the employment date
(with the employment date in B20).
If you want to round the weeks to the closest, change the INT function to
ROUND(DATEDIF.....,0)
--ron