Date has caused DATEDIF based formula to be incorrect

chive90

New Member
Joined
May 3, 2023
Messages
35
Office Version
  1. 2016
C5 = Yearly salary figure
C12 = Salary left to be paid 23/24 FY figure

E18 = First salary payment date (30/04/23)
E19 = Last salary payment date (31/03/24)

Formula in cell C12 = =C5/DATEDIF(E18,EOMONTH(E19,1),"m")*(DATEDIF(E18,EOMONTH(E19,1),"m")-(MONTH(TODAY())-MONTH(E18)))

This was working fine, up until this month, when it appears to now have wildly inflated the figure. Possibly something to do with the new calendar year?

Based on the date value in E19, there are 3 salary payments left this FY, yet the figure in C12 is much, much more than that.

Any ideas?

Thanks
 

Excel Facts

Quick Sum
Select a range of cells. The total appears in bottom right of Excel screen. Right-click total to add Max, Min, Count, Average.
Break each down into separate cells. Quite likely the year change is the issue, as you do not take it into account?
Calculate the year with YEAR() and multiple that by 12 to get the months, then add your Month() value, then do the math.
 
Last edited:
Upvote 0
Break each down into separate cells. Quite likely the year change is the issue, as you do not take it into account?
Calculate the year with YEAR() and multiple that by 12 to get the months, then add your Month() value, then do the math.

Do you mean break down the formula in C12? It was a formula I found and adapted either from on here or online so I am not across exactly how it works if I'm honest.
If you could help break it down for me and possibly advise how I input a year element to it, that would be great.
 
Upvote 0
See if the following helps:

=C5/DATEDIF(E18,EOMONTH(E19,1),"m")*(DATEDIF(E18,EOMONTH(E19,1),"m")-MOD(MONTH(TODAY())-MONTH(E18),12))
 
Upvote 1
Solution
See if the following helps:

=C5/DATEDIF(E18,EOMONTH(E19,1),"m")*(DATEDIF(E18,EOMONTH(E19,1),"m")-MOD(MONTH(TODAY())-MONTH(E18),12))

That works brilliantly, thanks!
What does the MOD function do in this case?
 
Upvote 0
That works brilliantly, thanks!
What does the MOD function do in this case?
TBH, I have no clue as to how that even works? :( and I have used Mod() in the past myself.

 
Upvote 0
In this particular case, the MOD function ensures that the difference between MONTH(TODAY()) and MONTH(E18) varies in the range of 0...11 and never goes negative.

Glad to have helped.
 
Upvote 0
In this particular case, the MOD function ensures that the difference between MONTH(TODAY()) and MONTH(E18) varies in the range of 0...11 and never goes negative.

Glad to have helped.
No, I mean, I understood it to be the remainder after dividing by the divisor?
- 3 divided by 12 does not come to 9?, more like -3 + 12 ?
 
Upvote 0
No, I mean, I understood it to be the remainder after dividing by the divisor?
- 3 divided by 12 does not come to 9?, more like -3 + 12 ?
With a negative number you keep adding the Modulus (in this case 12) until it reaches a positive number i.e. -3 + 12 = 9

For example -11 mod 7 would be -11 + 7 + 7 = 3

a - b*INT(a/b) is what is actually used by Excel for calculating Mod(a, b), so with the -3 and 12
Book1
F
26-3
2712
28
299
Sheet1
Cell Formulas
RangeFormula
F29F29=F26-F27*INT(F26/F27)
 
Last edited:
Upvote 0

Forum statistics

Threads
1,215,124
Messages
6,123,184
Members
449,090
Latest member
bes000

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