This seems to be more a puzzle than a problem. In my database, I have four Tables, one for 2017 data, one for 2018, one for 2019, one for 2020. For each table, I have a query. I designed the queries in the Design View of Access because I have poor knowledge
of SQL. In Design View there is a split screen normally showing the table(s) used in the query on the upper screen and the fields selected on the bottom screen. My 2017, 2018, and 2020 queries all look like I expect them to look in the Design View. For
reasons unknown to me, in the design view the 2019 query does not show the table that it is based on in the upper screen. (I've scrolled all around the area and cannot find it.) This does not seem to cause a problem with the query's performance, but it certainly
puzzles me why this is happening. I've copied the SQL version of the 2019 query and the 2020 query below. Both look the same to me except for source table and different field names; so, as I said, the 2019 query seems to be working OK. It's just that the
display in the Design View is not what I normally expect. Any comments, suggestions as to why this is happening? Thanks
Query based on 2019 Table:
SELECT [2019_Table].[Parcel_ID Trim], [2019_Table].[Location Trim], [2019_Table].[Owner_No1 Trim], [2019_Table].Digest_Class, [2019_Table].Total_Acres, [2019_Table].Tax_District, [2019_Table].Homestead_Exemption, [2019_Table].Improvement_Value, [2019_Table].Accessory_Value,
[2019_Table].Land_Value, [2019_Table].Total_FMV, [2019_Table].NBC
FROM 2019_Table;
Query based on 2020 Table:
SELECT [2020_Table].[Parcel_No (Trimmed)], [2020_Table].[Location (Trimmed)], [2020_Table].HOUSE_NO, [2020_Table].STDIRECT, [2020_Table].[Street_Nam (Trimmed)], [2020_Table].[Owner1_Name (Trimmed)], [2020_Table].[Owner2_Name (Trimmed)], [2020_Table].ADDRESS2,
[2020_Table].ADDRESS3, [2020_Table].CITY, [2020_Table].STATE, [2020_Table].ZIP, [2020_Table].DIGCLASS, [2020_Table].TOTALACRES, [2020_Table].TAXDISTRIC, [2020_Table].HOMEEXEMPT, [2020_Table].Improvement_Value, [2020_Table].FMVACC, [2020_Table].Land_Value,
[2020_Table].CURR_VAL, [2020_Table].NEIGHBHOOD, [2020_Table].Conservation_Land_Value
FROM 2020_Table;