A lookupfieldat table! I should have know. I hate those things.
You could go to the properties and try to see thecolumnwidth to something
like 0,1 . That will hide the firstcolumn.
But the proper was isnotto use lookup fields. Instead do honest joins
between the tables. Something like:
SELECT [Incident Header_tbl].[CSS Incident #],
[Incident Header_tbl].[Code & Type of Incident],
Location.Location,
[Incident Header_tbl].[Date of Incident],
[Incident Header_tbl].Narrative,
[Incident Header_tbl].[Assigned to],
[Incident Header_tbl].[Status of Report],
[Incident Header_tbl].[Reporting Officer]
FROM [Incident Header_tbl], Location
WHERE Location.Abbr = [Incident Header_tbl].[Location of Incident] ;
--
Jerry Whittle, Microsoft Access MVP
Light. Strong. Cheap. Pick two. Keith Bontrager - Bicycle Builder.
Hi,
This SQL statement doesn't select from the Location table. It does have a
Location of Incidentfield. How does the Incident Header_tbl link to the
Location table and what do you wish to see?
--
Jerry Whittle, Microsoft Access MVP
Light. Strong. Cheap. Pick two. Keith Bontrager - Bicycle Builder.
:
Here is the SQL view.
SELECT [Incident Header_tbl].[CSS Incident #], [Incident Header_tbl]..
[Code & Type of Incident], [Incident Header_tbl].[Location of
Incident], [Incident Header_tbl].[Date of Incident], [Incident
Header_tbl].Narrative, [Incident Header_tbl].[Assigned to], [Incident
Header_tbl].[Status of Report], [Incident Header_tbl].[Reporting
Officer]
FROM [Incident Header_tbl];
Karl- Hide quoted text -
- Show quoted text -
The Incident Header_tbl, Location of Incidentfieldis linked via a
combo box with the control source as the Location table, with
properties ofcolumncount 2, and boundcolumn1.
I wish to see the long form for the location, located incolumn2,not
the abbreviation.
- Show quoted text -