Hello, i am fairly new to access and am just having trouble with a query,
the result i am trying to achieve is to have a date automaticly formatted to add the st/rd/th i.e. the 12/04/1964 formated to 12th Apr 1964 as this is to be added to a report for all the employees in our company.
this is what i have so far:
my gut feeling is telling me to use a nested IIf statement???? any help would to greatly received!
the result i am trying to achieve is to have a date automaticly formatted to add the st/rd/th i.e. the 12/04/1964 formated to 12th Apr 1964 as this is to be added to a report for all the employees in our company.
this is what i have so far:
Code:
DOB: CStr(Format([BirthDate],"dd")) & "-" & CStr(Format([BirthDate],"mmm")) & "-" & CStr(Format([BirthDate],"yyyy"))
my gut feeling is telling me to use a nested IIf statement???? any help would to greatly received!