L
Lu
I have the following table to convert month names to french.
Mth_Name
Field 1= Month Number
Field 2= Month Name
example:
1 janvier
2 fevrier
....
12 decembre
I have a query, QryCurrentMonth which uses DatePart("m",Now()) to return the
current month number and find Month Name.
My problem is this. When creating a report I need my date to be displayed as:
"le 6 fevrier 2008". I have tried many options in my control source but to
no avail.
="le " & " " & DatePart("d",Now()) & " " & [QryCurrentMonth]![MONTH NAME] &
" " & DatePart("yyyy",Now())
Why do I keep getting #Name? instead of the date? Please help!
Mth_Name
Field 1= Month Number
Field 2= Month Name
example:
1 janvier
2 fevrier
....
12 decembre
I have a query, QryCurrentMonth which uses DatePart("m",Now()) to return the
current month number and find Month Name.
My problem is this. When creating a report I need my date to be displayed as:
"le 6 fevrier 2008". I have tried many options in my control source but to
no avail.
="le " & " " & DatePart("d",Now()) & " " & [QryCurrentMonth]![MONTH NAME] &
" " & DatePart("yyyy",Now())
Why do I keep getting #Name? instead of the date? Please help!