E
Emilio
I decided to start a new message and maybe explain my
problem a little more.
You are right John Vinson,I have a Subform with three
controls, bound to a Table (or a Query) with three fields
(Scheduled, JobDate and Status).
In the Form I have a Check box that automatically will
switch to "ON" with the following expression:
=[JobSchedule Status Query subform1].[Form]![Status]
="Done"
And this will update my receivables so I can tell who
owes me money.
The problem is if I have say 2 lines (sometimes are 35):
Jones 08/15/03 Done
Jones 08/18/03 InstallerTold
(this all will show in a calendar for scheduling)
automatically this job will show as outstanding even if
it is not all completed.
Is there a way to create a query that checks ALL lines to
see if ALL is "Done"?
I received an answer from John Vinson:
SELECT * FROM yourtable
WHERE JobID = <the job you want to check>
AND Status <> "Done";
wich I thought will work perfectly ( and I am sure it
should) except I can't see how to use it in my case.
I tried using "Is Null" among other things but it got me,
can't get it to work.
Sorry if too confusing.
I hope someone can lend me a hand, this is driving me
insane.
Thanks,
Emilio
problem a little more.
You are right John Vinson,I have a Subform with three
controls, bound to a Table (or a Query) with three fields
(Scheduled, JobDate and Status).
In the Form I have a Check box that automatically will
switch to "ON" with the following expression:
=[JobSchedule Status Query subform1].[Form]![Status]
="Done"
And this will update my receivables so I can tell who
owes me money.
The problem is if I have say 2 lines (sometimes are 35):
Jones 08/15/03 Done
Jones 08/18/03 InstallerTold
(this all will show in a calendar for scheduling)
automatically this job will show as outstanding even if
it is not all completed.
Is there a way to create a query that checks ALL lines to
see if ALL is "Done"?
I received an answer from John Vinson:
SELECT * FROM yourtable
WHERE JobID = <the job you want to check>
AND Status <> "Done";
wich I thought will work perfectly ( and I am sure it
should) except I can't see how to use it in my case.
I tried using "Is Null" among other things but it got me,
can't get it to work.
Sorry if too confusing.
I hope someone can lend me a hand, this is driving me
insane.
Thanks,
Emilio