Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I have two columns one labeled start date, the other Date Completed. I have
a third column where I need to display how many days it took to complete the process from start to finish. Do I need a macro? I have no idea how to format the third column to calculate the days between the other two. |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Hi,
Try this un-documented formula =DATEDIF(A1,B1,"d") For help on this formula look here http://www.cpearson.com/excel/datedif.aspx -- Mike When competing hypotheses are otherwise equal, adopt the hypothesis that introduces the fewest assumptions while still sufficiently answering the question. "Pat Briggs" wrote: I have two columns one labeled start date, the other Date Completed. I have a third column where I need to display how many days it took to complete the process from start to finish. Do I need a macro? I have no idea how to format the third column to calculate the days between the other two. |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Assume that in A2 cell you are having the START DATE and in B2 cell is the
END DATE. Copy and paste the below formula in C2 cell =IF(AND(A2<"",B2<""),DATEDIF(A2,B2,"D"),"") Remember to Click Yes, if this post helps! -------------------- (Ms-Exl-Learner) -------------------- "Pat Briggs" wrote: I have two columns one labeled start date, the other Date Completed. I have a third column where I need to display how many days it took to complete the process from start to finish. Do I need a macro? I have no idea how to format the third column to calculate the days between the other two. |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Just subtract the start date from the end date.
A1 = start date = 1/1/2010 B1 = end date = 1/31/2010 =B1-A1 Format as General or Number Result = 30 Copy down as needed. -- Biff Microsoft Excel MVP "Pat Briggs" wrote in message ... I have two columns one labeled start date, the other Date Completed. I have a third column where I need to display how many days it took to complete the process from start to finish. Do I need a macro? I have no idea how to format the third column to calculate the days between the other two. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Calculate 60 days from Start Date - including weekends | Excel Worksheet Functions | |||
Count Number of Days after a Start Date | Excel Discussion (Misc queries) | |||
Calculating number of days including the start and end date | Excel Discussion (Misc queries) | |||
find and display all possible start times and days to work | Excel Discussion (Misc queries) | |||
I want to count days between two dates including start date | Excel Worksheet Functions |