You could try the following which adapts Vidru's solution from thread767-733334 for the numeric suffixes:
weekdayname(dayofweek({table.date})) +" "+ totext({table.date},"d")+
(
if datepart("d",{table.date}) in [1,21,31] then "st "
else if datepart("d",{table.date}) in [2,22] then "nd "
else if datepart("d",{table.date}) in [3,23] then "rd "
else "th "
)+
totext({table.date},"MMMM yyyy")
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.