I need some help with a simple calculation - calculating the number of 'cycles' btwn 2 dates – ie. the number of 14-day cycles plus the number of days transpired (into the next incompleted cycle).
As dates are entered into Col E, the number of cycles (plus days transpired) will show up in Col F as “cycle# / days”.
Example:
(today’s date :11/20/05)
date entered in Col E: 10/01/05
result in Col F: 3/9
3 (14-day) cycles + 9 days transpired
I tried “
”, but it returns a decimal value of the cycles rather than the cycle PLUS the actual number of transpired days.
Thanks in advance for your help
As dates are entered into Col E, the number of cycles (plus days transpired) will show up in Col F as “cycle# / days”.
Example:
(today’s date :11/20/05)
date entered in Col E: 10/01/05
result in Col F: 3/9
3 (14-day) cycles + 9 days transpired
I tried “
Code:
=DATEDIF(E2,NOW(),"d")/14
Thanks in advance for your help