C
Confused87
I'm creating a database for a charity which tells me who is late forwarding
thier donations to us. I need a screen which tells me this info. A Bad Debt
is someone who has not forwarded us thier donations after 90 days from the
agreed Due Date. I have created a query from the Events Table which shows me
how many days from Now a donation is overdue. I now need to flag the bad
debtors up in some way.
Problem is, every event is one record, so, there are three possible places
that number can show up, meaining I can't use Criteria. This will finish up
as a Subform within a Form - at which stage, and how can I do this?
Welcome to (the relevant part of) my query:
Funds Due 1 || Recieved Date 1 || Expr3 || Funds Due 2|| Recieved Date 2||
Expr4
10/03/2007 ||11/03/2007 || || 20/03/2007 ||
|| 749
01/03/2008 || || 402 || || ||
10/02/2009 || || 56 || || ||
Expr3: IIf(IsNull([Recieved Date 1]),DateDiff("d",[Funds Due 1],Now()))
So, I want record 1 and 2 to be highlighted(either with text next to
them(saying Bad Debt) or as the only ones showing up). 1 because the second
payment is overdue, 2 because the first is overdue. 3 shouldn't show because
it is not overdue even though it is outstanding.
Many Thanks
C
thier donations to us. I need a screen which tells me this info. A Bad Debt
is someone who has not forwarded us thier donations after 90 days from the
agreed Due Date. I have created a query from the Events Table which shows me
how many days from Now a donation is overdue. I now need to flag the bad
debtors up in some way.
Problem is, every event is one record, so, there are three possible places
that number can show up, meaining I can't use Criteria. This will finish up
as a Subform within a Form - at which stage, and how can I do this?
Welcome to (the relevant part of) my query:
Funds Due 1 || Recieved Date 1 || Expr3 || Funds Due 2|| Recieved Date 2||
Expr4
10/03/2007 ||11/03/2007 || || 20/03/2007 ||
|| 749
01/03/2008 || || 402 || || ||
10/02/2009 || || 56 || || ||
Expr3: IIf(IsNull([Recieved Date 1]),DateDiff("d",[Funds Due 1],Now()))
So, I want record 1 and 2 to be highlighted(either with text next to
them(saying Bad Debt) or as the only ones showing up). 1 because the second
payment is overdue, 2 because the first is overdue. 3 shouldn't show because
it is not overdue even though it is outstanding.
Many Thanks
C