DATEVALUE(@Date@ ,"E, MMM d'th' yyyy")
How do I make the formula handle not only 'th' but also 'nd', 'rd', and 'st'?
Solved! Go to Solution.
REGEXP(@Date@ ,"(.*[0-9])(nd|st|th|rd)( .*)","$1$3")
DATEVALUE(regexp(@date@,"(st|rd|th|nd)",""),"E, MMM d yyyy")