Hiya,
TRIM is used to remove trailing spaces from a field:
Assume that in your query, the values were:
FirstName = 'Tony '
LastName = 'Blair '
Then FirstName &" "& [LastName] would give 'Tony Blair '
Whereas:
Trim([FirstName] & " " & [LastName]) would give 'Tony Blair'
Tim