R
ricardozelaya
Table 32820 Table 32820LP
Table Property Details
PARCELID Field2 Etc. PARCELID Field2 Etc. PARCELID
Field2 Etc.
A Data A Data
B Data B Data
C Data A Data
D Data
I download table 32820 and table 32820LP already filled from a site. They
have field 1 in common. Table Property Details has Property Address in
common with Table 32820, but it's empty . I need to use it to input
information from clients. Table 32820 contains Tax ID, name, address, phone,
etc; table 32820LP contains Tax ID, case number, court date, etc. On table
Property Details, I need to save results of telephone call, such as bedrooms,
baths, square footage, etc. Table Property Details is empty.
How can I relate these tables in a query and still make the query updatable
without setting Dynaset (Inconsistent Updates)? The current join look like
this: I can make it updatable by setting Dynaset (Inconsistent Updates), but
doing so, does not update the Property details table when I edit the fields
in the form.
FROM (32820 LEFT JOIN 32820LP ON [32820].PARCELID = [32820LP].[PARCEL ID])
LEFT JOIN [Property Details] ON [32820].PARCELID = [Property Details].
[Property Address]
ORDER BY StrConv([ADDRESS],3);
Table Property Details
PARCELID Field2 Etc. PARCELID Field2 Etc. PARCELID
Field2 Etc.
A Data A Data
B Data B Data
C Data A Data
D Data
I download table 32820 and table 32820LP already filled from a site. They
have field 1 in common. Table Property Details has Property Address in
common with Table 32820, but it's empty . I need to use it to input
information from clients. Table 32820 contains Tax ID, name, address, phone,
etc; table 32820LP contains Tax ID, case number, court date, etc. On table
Property Details, I need to save results of telephone call, such as bedrooms,
baths, square footage, etc. Table Property Details is empty.
How can I relate these tables in a query and still make the query updatable
without setting Dynaset (Inconsistent Updates)? The current join look like
this: I can make it updatable by setting Dynaset (Inconsistent Updates), but
doing so, does not update the Property details table when I edit the fields
in the form.
FROM (32820 LEFT JOIN 32820LP ON [32820].PARCELID = [32820LP].[PARCEL ID])
LEFT JOIN [Property Details] ON [32820].PARCELID = [Property Details].
[Property Address]
ORDER BY StrConv([ADDRESS],3);