Forum Discussion
KevinR1335
Oct 18, 2022Copper Contributor
need to determine days between two dates
need a formula that will give me number of days between two dates
OliverScheurich
Oct 18, 2022Gold Contributor
- KevinR1335Oct 18, 2022Copper ContributorDidn't work...2E is an established date, whilst 2F is todays date. need numbers of days between these two cells. Thanks...
- OliverScheurichOct 18, 2022Gold Contributor
=DATEDIF(E2;F2;"d")-1
You can subtract one day to return the number of days between the two dates. Depending on your version of Excel you might have to replace "; " by ", ":
=DATEDIF(E2,F2,"d")-1
- HansVogelaarOct 18, 2022MVP
- KevinR1335Oct 18, 2022Copper Contributordidn't work