what is the proper syntax for this select statement using an access database:
SELECT tlkpDonorLevel.DonorLevelID, [Lower] & " to " & [Upper] AS Range
FROM tlkpDonorLevel;
I am combining the two fields from a record to make one variable. Lower and Upper are the field names.
SELECT tlkpDonorLevel.DonorLevelID, [Lower] & " to " & [Upper] AS Range
FROM tlkpDonorLevel;
I am combining the two fields from a record to make one variable. Lower and Upper are the field names.