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
KevinR1335
Oct 18, 2022Copper Contributor
Didn't work...2E is an established date, whilst 2F is todays date. need numbers of days between these two cells. Thanks...
OliverScheurich
Oct 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