ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Discussion (Misc queries) (https://www.excelbanter.com/excel-discussion-misc-queries/)
-   -   Using DATEDIF how do I add another month of each date fall on same (https://www.excelbanter.com/excel-discussion-misc-queries/231706-using-datedif-how-do-i-add-another-month-each-date-fall-same.html)

kmt1984

Using DATEDIF how do I add another month of each date fall on same
 
I am using the following

=DATEDIF(C6,C5,"m")

If I enter the exact same dates the answer is obviously 0, but I want it to
be 1. I only want to add 1 if the dates are exactly the same.

In case it helps I am trying to figure out how far behind an account is, and
if the dates are the same a payment was not made and one more payment would
be due.

Any help would be great!





Sean Timmons

Using DATEDIF how do I add another month of each date fall on same
 
=IF(DATEDIF(C6,C5,"m")=0,1,DATEDIF(C6,C5,"m"))



"kmt1984" wrote:

I am using the following

=DATEDIF(C6,C5,"m")

If I enter the exact same dates the answer is obviously 0, but I want it to
be 1. I only want to add 1 if the dates are exactly the same.

In case it helps I am trying to figure out how far behind an account is, and
if the dates are the same a payment was not made and one more payment would
be due.

Any help would be great!





Mike H

Using DATEDIF how do I add another month of each date fall on same
 
Try

=MAX(1,DATEDIF(C6,C5,"m"))

Mike

"kmt1984" wrote:

I am using the following

=DATEDIF(C6,C5,"m")

If I enter the exact same dates the answer is obviously 0, but I want it to
be 1. I only want to add 1 if the dates are exactly the same.

In case it helps I am trying to figure out how far behind an account is, and
if the dates are the same a payment was not made and one more payment would
be due.

Any help would be great!





joeu2004

Using DATEDIF how do I add another month of each date fall on same
 
"kmt1984" wrote:
=DATEDIF(C6,C5,"m")
If I enter the exact same dates the answer is obviously 0, but I want
it to be 1. I only want to add 1 if the dates are exactly the same.


If you mean that literally ("only ... if the dates are exactly the same"),
then:

=datedif(C6,C5,"m") + (C6=C5)

If you really mean "only if the dates are in the same month":

=max(1, datedif(C6,C5,"m"))


----- original message -----

"kmt1984" wrote in message
...
I am using the following

=DATEDIF(C6,C5,"m")

If I enter the exact same dates the answer is obviously 0, but I want it
to
be 1. I only want to add 1 if the dates are exactly the same.

In case it helps I am trying to figure out how far behind an account is,
and
if the dates are the same a payment was not made and one more payment
would
be due.

Any help would be great!



kmt1984

Using DATEDIF how do I add another month of each date fall on
 
Thank you the first was exactly what I was looking for!!

Thanks again!

"JoeU2004" wrote:

"kmt1984" wrote:
=DATEDIF(C6,C5,"m")
If I enter the exact same dates the answer is obviously 0, but I want
it to be 1. I only want to add 1 if the dates are exactly the same.


If you mean that literally ("only ... if the dates are exactly the same"),
then:

=datedif(C6,C5,"m") + (C6=C5)

If you really mean "only if the dates are in the same month":

=max(1, datedif(C6,C5,"m"))


----- original message -----

"kmt1984" wrote in message
...
I am using the following

=DATEDIF(C6,C5,"m")

If I enter the exact same dates the answer is obviously 0, but I want it
to
be 1. I only want to add 1 if the dates are exactly the same.

In case it helps I am trying to figure out how far behind an account is,
and
if the dates are the same a payment was not made and one more payment
would
be due.

Any help would be great!





All times are GMT +1. The time now is 12:47 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
ExcelBanter.com