RexesOperator
Registered User.
- Local time
- , 22:19
- Joined
- Jul 15, 2006
- Messages
- 604
I promised I wouldn't ask a question until after deployment - well I got official approval for the db this morning - depending on one change.
I need to be able to convert the date from long form Canadian English to long form French so the month names would appear in French on the French language letters and document. I have the regional settings set to English(Canada)
My most recent attempt is (this looked the most likely of the others I tried):
=IIf(Month([DATESENT])=1,[DATESENT]=" Janvier" & " " & Day([DATESENT]) & ", " & Year([DATESENT])," ")
In this case it correctly displays a blank if the month is not January. If it Januaray I get "December 30, 1899" (which I assume is the date used to begin Access's date calculations.
I need to be able to convert the date from long form Canadian English to long form French so the month names would appear in French on the French language letters and document. I have the regional settings set to English(Canada)
My most recent attempt is (this looked the most likely of the others I tried):
=IIf(Month([DATESENT])=1,[DATESENT]=" Janvier" & " " & Day([DATESENT]) & ", " & Year([DATESENT])," ")
In this case it correctly displays a blank if the month is not January. If it Januaray I get "December 30, 1899" (which I assume is the date used to begin Access's date calculations.