When I concatenate the Date, Title, and Time field together I lose the formatting for the Date and Time fields from what was set in the table. How do I set the Date and Time format in this example? I had the date set to "mmmm dd" in the table.
SELECT [date] & " " & [Title] & " " & [time] AS [Full Title]
FROM Table1;
Thanks in advance!
Jim
SELECT [date] & " " & [Title] & " " & [time] AS [Full Title]
FROM Table1;
Thanks in advance!
Jim