Hi
I am producing a sort of mail merge report for job applications.
I have set up a query to collate data for a report. One field is date and one is time. I have set the properties in the query to long date and medium time. This is because I want the "letter" to say e.g. The interview is on 29 August 2004 at 11:00 AM.
I have created the relevant textbox in the report as follows:
When I go to print preview the date is shown as 29/08/2004 and the time is shown as 11:00:00.
I clearly need to call a format from the report rather than relying on the format the query is feeding it.
Given I am calling these fields inside a textbox, as opposed to them being individual textboxes (with properties) in their own right, how do I do it?
Any thoughts or help greatly appreciated.
Best wishes
I am producing a sort of mail merge report for job applications.
I have set up a query to collate data for a report. One field is date and one is time. I have set the properties in the query to long date and medium time. This is because I want the "letter" to say e.g. The interview is on 29 August 2004 at 11:00 AM.
I have created the relevant textbox in the report as follows:
Code:
="The interview will take place at " & [strInt1] & " on " & [dtmInt1D] & " at " & [dtmInt1T] & " . Please report to the reception desk 15 minutes before your interview is due to take place."
I clearly need to call a format from the report rather than relying on the format the query is feeding it.
Given I am calling these fields inside a textbox, as opposed to them being individual textboxes (with properties) in their own right, how do I do it?
Any thoughts or help greatly appreciated.
Best wishes