I have an Age Calculation:
=IF(D5 <= 0, " ", IF(D5 > 0, (ROUNDDOWN((eDate - D5)/365.25, 0))))
This is used in two of the columns on a excel 2003 worksheet. In the formula eDate above should be the value of variable taken from a UserForm run at the beginning. I am of course getting a name error. How do I get the formula to use the UserForm variable eDate?
Thank you for you time.
=IF(D5 <= 0, " ", IF(D5 > 0, (ROUNDDOWN((eDate - D5)/365.25, 0))))
This is used in two of the columns on a excel 2003 worksheet. In the formula eDate above should be the value of variable taken from a UserForm run at the beginning. I am of course getting a name error. How do I get the formula to use the UserForm variable eDate?
Thank you for you time.