I am unable to modify the following statement to include a space between [FirstName] and [LastName]
strSQL = “INSERT INTO tlkpMembersAvailable (MemberID, MemberName) SELECT [MemberID], [FirstName] & [LastName] AS MemberName FROM tblMembers;”
(which is then run by) DoCmd.RunSQL strSQL
It’s not for want of trying, I just can’t figure out where to stick the extra quotes without ruining the syntax of the string.