m198redleg
Technical User
This is First time posting, I have gleaned a lot from listening. This has got me by the hair. Query Code is as follows, I find alot of request for coding;
TABLE "01DATA" WEEK, D, A, DTE_ENL, ([LAST_NAME]&" "&[FIRST]&" "&[MI])AS F_NAME, SSN, QT, DEPT, TYPE_ENL, SECTION, REC_MIT, CLEAR, DTE_IN
QUERY "04_DATAud" WEEK, D, A, DTE_ENL, ([LAST_NAME]&" "&[FIRST]&" "&[MI])AS F_NAME, SSN, QT, DEPT, TYPE_ENL, SECTION, REC_MIT, CLEAR, DTE_IN
Code is
SELECT *
FROM [01DATA]
UNION
SELECT *
FROM [04_DATAud]
INSERT INTO tblJacobs
SELECT *
WHERE DTE_IN = " "
ORDER BY WEEK;
It will not Make a new Table => tblJacobs
I COPY and pasted structure only tblJacobs and utilized the APPEND and UPDATE nichts.
I am havinbg to bring up their historical files and merge em into one, sort and print out based on five or six dif queries they will be able to see their progress, either up or down.
To most of you this is a trivial item, but my mind at the middle of the day is mush.
Thanks for any help you can afford me. They are utilizing Access 97.
TABLE "01DATA" WEEK, D, A, DTE_ENL, ([LAST_NAME]&" "&[FIRST]&" "&[MI])AS F_NAME, SSN, QT, DEPT, TYPE_ENL, SECTION, REC_MIT, CLEAR, DTE_IN
QUERY "04_DATAud" WEEK, D, A, DTE_ENL, ([LAST_NAME]&" "&[FIRST]&" "&[MI])AS F_NAME, SSN, QT, DEPT, TYPE_ENL, SECTION, REC_MIT, CLEAR, DTE_IN
Code is
SELECT *
FROM [01DATA]
UNION
SELECT *
FROM [04_DATAud]
INSERT INTO tblJacobs
SELECT *
WHERE DTE_IN = " "
ORDER BY WEEK;
It will not Make a new Table => tblJacobs
I COPY and pasted structure only tblJacobs and utilized the APPEND and UPDATE nichts.
I am havinbg to bring up their historical files and merge em into one, sort and print out based on five or six dif queries they will be able to see their progress, either up or down.
To most of you this is a trivial item, but my mind at the middle of the day is mush.
Thanks for any help you can afford me. They are utilizing Access 97.