Hi,
I'm using a reoccurring sheet and would like to use, besides a days between column, also a months between column so that the due date can be calculated with days but also with months. How do I create such a formula?
Hans
Hi Hans,
If you're looking for months between 2 dates, try a formula like the following example:
=MONTH([Start Date]2) - MONTH([Due Date]2)
You'll want to change the cell references in the above example to the cells in your sheet.
If you don't want negative numbers returned, you might try wrapping the whole thing in the absolute function:
=ABS(MONTH([Start Date]2) - MONTH([Due Date]2))