Hello,
Is there any way to modify this select query so it would be able to edit data?
All three tables ([NAMES], [WHOURS], [PAYPER]) used in this query has a primary key defined.
sample data from this query:
PS: I found this article '15 Reasons why You Sometimes Cannot Edit Data in an Access Query'
Link
Is #7 my problem? But I need all three tables to get a correct data.
Is there any way to modify this select query so it would be able to edit data?
All three tables ([NAMES], [WHOURS], [PAYPER]) used in this query has a primary key defined.
SQL:
SELECT NAMES.FULL_NAME, WHOURS.WDATE, WHOURS.WTYPE, WHOURS.WHRS, WHOURS.PCODE, WHOURS.WRATE, WHOURS.HIP
FROM [NAMES], [WHOURS], [PAYPER]
WHERE (((NAMES.EMPID)=[WHOURS].[EMPID]) AND ((PAYPER.PAYPER)=[Enter pay period mmm dd-dd:]) AND ((WHOURS.PAYPER)=[PAYPER].[PPID]));
sample data from this query:
Code:
FULL_NAME WDATE WTYPE WHRS PCODE WRATE HIP
MONDOR, ADAM 2/27/19 R/T 8 55 37.05 61
MONDOR, ADAM 2/27/19 O/T 2 55 37.05 62
MONDOR, ADAM 2/28/19 R/T 8 55 37.05 63
MONDOR, ADAM 2/28/19 O/T 2 55 37.05 64
FOERTER, MYLES 2/21/19 R/T 7 55 16 65
FOERTER, MYLES 2/22/19 R/T 7 55 16 66
FOERTER, MYLES 2/25/19 R/T 7.25 55 16 67
PS: I found this article '15 Reasons why You Sometimes Cannot Edit Data in an Access Query'
Link
Is #7 my problem? But I need all three tables to get a correct data.