Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I need to calculate the difference between date fields to get the answer in
days E.g. Open shop 10 Feb 2004 close shop 15 feb 2004 = 5 days So what is the formula for this??? |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi
one option assuming open date in A1, close date in B1 =B1-A1 or =E14-D14 & " days" (but be aware this second option changes the answer to a text field - if you want the word "days" but still want it as a number field this can be achieved with custom formatting.) then choose format / cells - under the number tab choose Number and set decimal places as required. Cheers JulieD "Andrew Forbes" <Andrew wrote in message ... I need to calculate the difference between date fields to get the answer in days E.g. Open shop 10 Feb 2004 close shop 15 feb 2004 = 5 days So what is the formula for this??? |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
A1 = 10 Feb 2004
B1 = 15 Feb 2004 Format both cells/rows to the date format you need. C1 = B1 - A1 Again, make sure you have the right format for time in days. "Andrew Forbes" <Andrew wrote in message ... I need to calculate the difference between date fields to get the answer in days E.g. Open shop 10 Feb 2004 close shop 15 feb 2004 = 5 days So what is the formula for this??? |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Assuming that the dates are not more than 360 days apart,
you can use following formula, assuming date1 is in cell A1 and date2 is is cell B1 =DAYS360(A1,B1) If you do not want the formula to return a negative number, and always return a positive number use =ABS(DAYS360(H63,H64)) Sharad *** Sent via Developersdex http://www.developersdex.com *** Don't just participate in USENET...get rewarded for it! |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How do I subtract/add a known number of days/months from a date? | Excel Worksheet Functions | |||
Solve 1st of month after specified number of days elapsed | Excel Worksheet Functions | |||
How to subtract 2 dates to get number of days.....please | Excel Worksheet Functions | |||
formula for tracking number of elapsed days from a stard date | Excel Worksheet Functions | |||
how to get the number of days between two date formatted fields in vba for excel? | Excel Worksheet Functions |