First of all your Optimized_Calendar_Pattern in your table Main Dataset should be storing the ID from Collection Day Information, NOT the text value in Field1
Similarly your field Extra Collection Information should be storing the ID from the table Extra Collection Information, NOT the text value of field 1
You will encounter no end of problems if you continue with this design as is.
Secondly, you are storing a calculated value (at least one) in 'Address_Concantenated' in your table Main Dataset, do not store calculated values, they can be figured any time you run a query or report and just waste space in your table.
Third, do not use spaces or other special characters in any of your database object names (table names, field names, controls, forms, reports, etc) they will cause you problems as you progress with MS access.
Lastly, you can concantenate the fields any way you want in a query so for instance if you wanted the Address_1, Street_Name then Field1 from CollectionDayInformation (if it exists) then field1 from ExtraCollectionInformation if it exists with a formula like
Code:
NewConcant: [Address_1] & " " & [Street_Name] & " " & iif(isnull([Collection Day Information]![field1]), "", [Collection Day Information]![field1]) & " " & iif(isnull([Extra Collection Information]![field1]), "", [Extra Collection Information]![field1])