DAYS360 Function Problem

  • Thread starter Thread starter andyp161
  • Start date Start date
A

andyp161

Hi there,

In column A I have start dates, in column B completion dates, and i
column C the DAYS360 function in order to calculate time taken.
However, the worksheet is ongoing and therefore the start date i
entered days/months before the completion date. As a result, where
have entered a start date and not a completion date, the DAYS36
function is returning negative numbers which I do not want. Is ther
anyway that I can instruct the DAYS360 function in column C not t
activate until the completion date is entered in column B?

Many thanks

And
 
Are you SURE you want DAYS360? That is a specialized function used in the
financial sector to simplify calculations for bonds. It assumes a 360 day
year, with 12 months of 30 days each. If you really want actual days, you'll
lose 6 days each year. You can calculate the number of days between two dates
by simple subtract, i.e. =IF(ISBLANK(B2),"",B2-A2)
 
Typo: Should have "lose 5 (or 6) days each year"

Are you SURE you want DAYS360? That is a specialized function used in the
financial sector to simplify calculations for bonds. It assumes a 360 day
year, with 12 months of 30 days each. If you really want actual days, you'll
lose 6 days each year. You can calculate the number of days between two dates
by simple subtract, i.e. =IF(ISBLANK(B2),"",B2-A2)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

DAYS360 4
Multiple functions, conditional functions 7
More effective than DAYS360? 1
An either/or function 6
Days360 problem 6
calculating a formula for a service level 6
Bug in days360 function 3
DAYS360 3

Back
Top