thought that was what you needed.
??? where does screenshot come into
1. open query in design view
2. click on sql view, top left of ribbon, or bottom right of access window
3. copy/paste the code into a post
4. highlight pasted code
5. click the code button (the # button)
anyway, you have it in the wrong place, just copy and paste this into your sql window (correct location shown in red), replacing all the existing code
Code:
SELECT TableOwner.FirstName, TableOwner.LastName, TableBuilding.BuildingNoID, TableBuilding.Street, TableBuilding.City, TableBuilding.TX, TableBuilding.ZipCode, TableBuilding.OwnerOccupied, TableOwner.MStreet, TableOwner.MCity, TableOwner.MState, TableOwner.MZip, iif(owneroccupied,firstname & " " & lastname,"") as addressto
FROM TableBuilding INNER JOIN TableOwner ON TableBuilding.AddressID = TableOwner.OwnerID;
now when you go back to the query design window, you will see the extra column.
The design window is just a visual way of creating and viewing sql