Dispaying date witht the day in

S

Simon

on my report i have the following code in a feild

="From " & [Startdate] & " to " & [enddate]

which dispays
From 13/04/2007 to 19/04/07


What i would like it to dispay is the following
From Friday 13 April 2007 to Thursday 19 April 2007


Any help would be great

Thanks
 
F

fredg

on my report i have the following code in a feild

="From " & [Startdate] & " to " & [enddate]

which dispays
From 13/04/2007 to 19/04/07

What i would like it to dispay is the following
From Friday 13 April 2007 to Thursday 19 April 2007

Any help would be great

Thanks

= "From " & Format([Startdate],"dddd dd mmmm yyyy") & " to " &
Format([enddate],"dddd dd mmmm yyyy")
 
G

Guest

try
="From " & format([startdate], "dddd d mmm yyyy") &" to " &format([enddate],
"dddd d mmm yyyy")




Simon said:
on my report i have the following code in a feild

="From " & [Startdate] & " to " & [enddate]

which dispays
From 13/04/2007 to 19/04/07


What i would like it to dispay is the following
From Friday 13 April 2007 to Thursday 19 April 2007


Any help would be great

Thanks
 

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

Similar Threads


Top