F
FerryMary
My obvious newbie-ness and total lack of understanding will probably make the
MVPs in here want to gag. Disclaimer: My apologies for any upchuck action I
may cause.
I have a problem that has to be so simple to fix but I just keep getting
blocked.
Tables are set as so, db is based on service element and credential element
of ferry maintenance service.
Tables are as followsI'm leaving out lookup tables and the like)
tblJob-pk-JobNumber(auto#) :Contains=vslid,statusid,initiateddate {All
information my query needs is in tblJob}
tblJobGate-pk-JobNumber(from tblJob):REPORTNO(number field),EndDate, and more
tblJobsBySystem-pk-JobsBySystemID(Auto#):JobNumber,equipid,temp readings etc
tblJobsByCertsDocs-pk-JobsByCertsDocsID(Auto#):JobNumber,CertID,Training
source, Required By:, etc.
frmJob has command button with macros which close/save frmJob,Opens
frmqry(which formats tblJob info via query adapted from a really nice person
on this site figured out for me as follows: vessel #-2digityear-count jobs
per vessel>ooo-oo-ooo) My goal is for this result to be my ReportNo in
tblJobGate. I want it for local tracking convenience,retention info and I'm
starting to think I want it because it's the only thing hindering me from a
great system.
I've tried DLookup, but since the JobNumber won't show up in a lower table I
can't search by that means. I'm willing to have a form contain all the
tblJob and tblJobGate info, but it's not working for me either. I have an
append query that places the Report No in my table, but can't get it to do so
without the query showing on top. You can't make form based on an action
query,,right?
Can I just place the INSERT query that works into my form code? If so where
might that be. I think my little microsoft paperclip was bleeding yesterday.
The append qry looks something like this. Sorry I'm at home and don't have
it in front of me.
INSERT INTO tblJobGate.JobNumber,Report
Select (MaxOfJobNumber AS JobNumber,ReportNo)
FROM qryVMPNumber
Or could a calculated control in a footer figure and concatenate(?) my
ReportNo?
I need to do from a form. Thanks so much.
MVPs in here want to gag. Disclaimer: My apologies for any upchuck action I
may cause.
I have a problem that has to be so simple to fix but I just keep getting
blocked.
Tables are set as so, db is based on service element and credential element
of ferry maintenance service.
Tables are as followsI'm leaving out lookup tables and the like)
tblJob-pk-JobNumber(auto#) :Contains=vslid,statusid,initiateddate {All
information my query needs is in tblJob}
tblJobGate-pk-JobNumber(from tblJob):REPORTNO(number field),EndDate, and more
tblJobsBySystem-pk-JobsBySystemID(Auto#):JobNumber,equipid,temp readings etc
tblJobsByCertsDocs-pk-JobsByCertsDocsID(Auto#):JobNumber,CertID,Training
source, Required By:, etc.
frmJob has command button with macros which close/save frmJob,Opens
frmqry(which formats tblJob info via query adapted from a really nice person
on this site figured out for me as follows: vessel #-2digityear-count jobs
per vessel>ooo-oo-ooo) My goal is for this result to be my ReportNo in
tblJobGate. I want it for local tracking convenience,retention info and I'm
starting to think I want it because it's the only thing hindering me from a
great system.
I've tried DLookup, but since the JobNumber won't show up in a lower table I
can't search by that means. I'm willing to have a form contain all the
tblJob and tblJobGate info, but it's not working for me either. I have an
append query that places the Report No in my table, but can't get it to do so
without the query showing on top. You can't make form based on an action
query,,right?
Can I just place the INSERT query that works into my form code? If so where
might that be. I think my little microsoft paperclip was bleeding yesterday.
The append qry looks something like this. Sorry I'm at home and don't have
it in front of me.
INSERT INTO tblJobGate.JobNumber,Report
Select (MaxOfJobNumber AS JobNumber,ReportNo)
FROM qryVMPNumber
Or could a calculated control in a footer figure and concatenate(?) my
ReportNo?
I need to do from a form. Thanks so much.