Date (multiple) format in textbox

P

Prohock

I have a report that is a letter and it is displaying multiple dates.

I would like the dates to have the following format (mmmm dd", "yyyy). I
need to add this to the textbox rather than the format value for the record
source property.

The text box code is as follows & " " & [StartDate] & " " & "to" & " " &
[EndDate] & " " &.

I am thinking that it mightbe something like this...but it does not work.

& " " & [StartDate]=mmmm dd", "yyyy & " " & "to" & " " & [EndDate]=mmmm dd",
"yyyy & " " &.
 
P

Prohock

I figured it out!

& " " & Format([StartDate],"mmmm dd\,yyyy") & " " & "to" & " " &
Format([EndDate],"mmmm dd"", ""yyyy") & " " &
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top