Due Dates based Upon 2 fields

natedog51

New member
Local time
Today, 10:21
Joined
Jan 24, 2007
Messages
8
I'm creating a db that provides project listings in the work queue, along with the due dates and a bunch of other data.

I have created a table [recurring projects] that stores the projects that are done frequently. Once I do some field manipulations on this table, I append them to a master table with all projects [projects] - ad hocs, non-recurring, etc.

Most, not all, recurring projects are due 14 days from the date of assignment, however it varies. I've created a query that populates the due date 14 days or whatever the user has inputed for working days from the assignment date.

All works good with this functionality.


Here's my problem:

There are some projects that are due on the 1st, 15th or some designated date each month. Typically the projects are assigned a due date prior to the month due (i.e. February projects are assigned in January). Since the due dates change each month, is there a way to code a query to look for the first process - 14 days - and if it is null, then populate with a day of the month due.

For example, the field [days_to_complete] = 14 so the query will populate 14 days from 1/31/07 resulting in [due_date] = 2/14/07 OR [days_to_complete] is null, but [day_of_month] = 1 , which I need to create the [due_date] = 2/1/07

I'm racking my brain and pencils are being cracked!

Thanks,
Nathan
 
EOMONTH inside Excel does this function, so but here is the Acess Equilivant
Public Function EOMonth(InputDate As Date, Optional MonthsToAdd As Integer)
' Returns the date of the last day of month, a specified number of months
' following a given date.
Dim TotalMonths As Integer
Dim NewMonth As Integer
Dim NewYear As Integer

If IsMissing(MonthsToAdd) Then
MonthsToAdd = 0
End If

TotalMonths = Month(InputDate) + MonthsToAdd
NewMonth = TotalMonths - (12 * Int(TotalMonths / 12))
NewYear = Year(InputDate) + Int(TotalMonths / 12)

If NewMonth = 0 Then
NewMonth = 12
NewYear = NewYear - 1
End If

Select Case NewMonth
Case 1, 3, 5, 7, 8, 10, 12
EOMonth = DateSerial(NewYear, NewMonth, 31)
Case 4, 6, 9, 11
EOMonth = DateSerial(NewYear, NewMonth, 30)
Case 2
If Int(NewYear / 4) = NewYear / 4 Then
EOMonth = DateSerial(NewYear, NewMonth, 29)
Else
EOMonth = DateSerial(NewYear, NewMonth, 28)
End If
End Select
End Function

Paste into a module. Somewhere
This should work as a regular expression expr1: iif([days to complete] is null, eomonth([Create Date])+1, [days to complete]+ [Create Date])

natedog51 said:
I'm creating a db that provides project listings in the work queue, along with the due dates and a bunch of other data.

I have created a table [recurring projects] that stores the projects that are done frequently. Once I do some field manipulations on this table, I append them to a master table with all projects [projects] - ad hocs, non-recurring, etc.

Most, not all, recurring projects are due 14 days from the date of assignment, however it varies. I've created a query that populates the due date 14 days or whatever the user has inputed for working days from the assignment date.

All works good with this functionality.


Here's my problem:

There are some projects that are due on the 1st, 15th or some designated date each month. Typically the projects are assigned a due date prior to the month due (i.e. February projects are assigned in January). Since the due dates change each month, is there a way to code a query to look for the first process - 14 days - and if it is null, then populate with a day of the month due.

For example, the field [days_to_complete] = 14 so the query will populate 14 days from 1/31/07 resulting in [due_date] = 2/14/07 OR [days_to_complete] is null, but [day_of_month] = 1 , which I need to create the [due_date] = 2/1/07

I'm racking my brain and pencils are being cracked!

Thanks,
Nathan
 
Mousie,

First of all, thanks a bunch! This function works well for projects that are due on the 1st of the following month following the date created [date assigned], however, I need to tweak it a little more and add some functionality to allow for due dates for other days in the month such as the 15th or 20th.

Any thoughts?

Thanks again,
Nathan
 
If there's a field in there that determines whether it's due at the Start of the month, or middle of the month you can adjust:
eomonth([Create Date])+1 to iif([DueInMth]="Start",Eomonth([Create Date])+1,eomonth([Create Date])+16 )
perhaps,
 
Works like a charm! I actually put the field [DueInMth] as a numeric field and put the statement as Eomonth([Create Date])+[DueInMth]. It allows flexibility throughout the whole month.

Thanks again!
 
natedog51 said:
Works like a charm! I actually put the field [DueInMth] as a numeric field and put the statement as Eomonth([Create Date])+[DueInMth]. It allows flexibility throughout the whole month.

Thanks again!


No worries, happy to help
 

Users who are viewing this thread

Back
Top Bottom