Days between two dates

sunrise06

Active Member
Joined
Oct 27, 2006
Messages
262
Office Version
  1. 365
Platform
  1. Windows
Working with an Excel formula. I want the number of days between two dates. I am using 7/1/2018 to 6/30/2019. My formula is =DAYS(B1,A1). Where B1 = 6/30/2019 and A1=7/1/2018. I thought the result would be 365 but I am getting 364.

Thoughts?
 

Excel Facts

Whats the difference between CONCAT and CONCATENATE?
The newer CONCAT function can reference a range of cells. =CONCATENATE(A1,A2,A3,A4,A5) becomes =CONCAT(A1:A5)
Thanks, but it just does seem right.
VBA will give 364
Code:
Sub m()

H = DateSerial(2019, 6, 30)
B = DateSerial(2018, 7, 1)

D = H - B

Debug.print D

End Sub
 
Last edited:
Upvote 0
Thanks, but it just does seem right.
Subtracting two numbers is different than counting between two numbers. Take 3 and 6...

Counting is 3, 4, 5, 6 (total of 4)

Difference: 6 - 3 which equals 3 (always one less than counting).
 
Upvote 0

Forum statistics

Threads
1,214,393
Messages
6,119,261
Members
448,880
Latest member
aveternik

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top