Jump to content
Claris Engage 2025 - March 25-26 Austin Texas ×
The Claris Museum: The Vault of FileMaker Antiquities at Claris Engage 2025! ×

This topic is 5312 days old. Please don't post here. Open a new topic instead.

Recommended Posts

Posted

Can anyone suggest a way through my brick wall.

I am trying to append the above abbreviations to a date so far I have: If (Day ( IssueDate ) = 1 or 21 or 31; "st" ;"" )

If the date is 23rd the result is 23st which not what I expected, I have tried everything I can think of maybe I am missing something obvious.

Posted

Thank you for pointing me in the right direction Comment. That worked a treat.

I used.......Case( not IsEmpty(date),

DayName(date) & ", " & MonthName(date) & " " & Day(date) &

Case(

PatternCount( " 1 21 31 ", " " & Day(date) & " " ), "st",

PatternCount( " 2 22 ", " " & Day(date) & " "), "nd",

PatternCount( " 3 23 ", " " & Day(date) & " " ), "rd",

"th" ) )

A big thanks to -Queue- for the code.

Vinny

This topic is 5312 days old. Please don't post here. Open a new topic instead.

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.