Currently have combo box set up to pull from 4 fields in one table and to dump into into one field on another table. Row source is (from sqlview):
SELECT DISTINCTROW [Def].[Defname] & " " & [Def].[Addr1] & " " & [Def].[addr2] & " " & [Def].[addr3] AS expr1 FROM def ORDER BY [Def].[Defname] & " " & [Def].[Addr1] & " " & [Def].[addr2] & " " & [Def].[addr3];
have tried adding vbcrlf after defname, addr1, and addr3 but it doesn't put the format of the combo box correctly. This if for names and addresses of people that will have to merge with a word document. I'm already going to have to replace the mergefields in all the documents to go from 4 fields to one, but I need it to format on the display and table correctly. Any ideas?
SELECT DISTINCTROW [Def].[Defname] & " " & [Def].[Addr1] & " " & [Def].[addr2] & " " & [Def].[addr3] AS expr1 FROM def ORDER BY [Def].[Defname] & " " & [Def].[Addr1] & " " & [Def].[addr2] & " " & [Def].[addr3];
have tried adding vbcrlf after defname, addr1, and addr3 but it doesn't put the format of the combo box correctly. This if for names and addresses of people that will have to merge with a word document. I'm already going to have to replace the mergefields in all the documents to go from 4 fields to one, but I need it to format on the display and table correctly. Any ideas?