jeffreybrown
Registered User.
- Local time
- Yesterday, 18:54
- Joined
- Aug 13, 2010
- Messages
- 15
I have two textboxes with dates and need to display months and days in another textbox.
StartDateEst = 3/7/2017
DueDateEst = 4/21/2017
=Int(([DueDateEst]-[StartDateEst])/30) & "m "
this gives me 1m
but how do I know get 1m 15d?
In Excel I would use the MOD function, but after searching and trying a few other Access suggestion, couldn't get the syntax correct.
StartDateEst = 3/7/2017
DueDateEst = 4/21/2017
=Int(([DueDateEst]-[StartDateEst])/30) & "m "
this gives me 1m
but how do I know get 1m 15d?
In Excel I would use the MOD function, but after searching and trying a few other Access suggestion, couldn't get the syntax correct.