Hi All,
I've come across a little problem wit concatenating memo fields(address). They are truncated to a text fields ,which only holds 255 characters.Any ideas on how to keep all the txt?
Here's the code i'm using:
Private Sub btnSQL7_Click()
Dim SQLstr As String
'concat into ETE
SQLstr = "SELECT Available.[Total size], Available.Description, [Available.Address] & ',' & [Available.Address2] & ',' & [Available.Address3] & ',' & [Available.Town] & ',' & [Available.Postcode] AS PropertyAddress, Available.AgentOne INTO ETE FROM Available"
DoCmd.RunSQL SQLstr
End Sub
I've come across a little problem wit concatenating memo fields(address). They are truncated to a text fields ,which only holds 255 characters.Any ideas on how to keep all the txt?
Here's the code i'm using:
Private Sub btnSQL7_Click()
Dim SQLstr As String
'concat into ETE
SQLstr = "SELECT Available.[Total size], Available.Description, [Available.Address] & ',' & [Available.Address2] & ',' & [Available.Address3] & ',' & [Available.Town] & ',' & [Available.Postcode] AS PropertyAddress, Available.AgentOne INTO ETE FROM Available"
DoCmd.RunSQL SQLstr
End Sub