"Marshall Barton" <(E-Mail Removed)> wrote in message
news

(E-Mail Removed)...
> rml wrote:
>
>>How can I make the following code convert the date portion to dd/mm/yy
>>instead of the standard mm/dd/yy?
>>
>>= Trim([CreateDate] & " / " & [Tech])
>
>
> This is different from your other formatting question.
> Here, you need to use the Format function:
>
> =Trim(Format(CreateDate, "ss/mm/yy") & " / " & [Tech])
Slight typo. It should be
=Trim(Format(CreateDate, "dd/mm/yy") & " / " & [Tech])
--
Doug Steele, Microsoft Access MVP
http://I.Am/DougSteele
(no private e-mails, please)