Skip to main content
Question

Anyone have a Formula to convert Names into correct Plural and Possessive


Mike_Shaw1
Forum|alt.badge.img+9

I assume there is not formula reference for this. Is there anyone with prebuilt formula that will identify when to use the s, ‘s, or es on a name? To comply with the standard English rules here: https://www.merriam-webster.com/grammar/what-happens-to-names-when-we-make-them-plural-or-possessive

I’m sure I could take 2+ hours figure it out, unless you by chance have it 😀

2 replies

Forum|alt.badge.img+3
  • New Participant
  • 2 replies
  • March 28, 2025

 

Plural

IF(
  REGEX_MATCH(LOWER({Name}), '(s|x|z|ch|sh)$'),
  {Name} & "es",
  {Name} & "s"
)

 

Possessive

IF(
  REGEX_MATCH(LOWER({Name}), 's$'),
  {Name} & "'",
  {Name} & "'s"
)

 


Mike_Shaw1
Forum|alt.badge.img+9
  • Author
  • 34 replies
  • March 28, 2025

@dgatlin-ebay   Beast Mode! Thanks,  I dont use REGEX so that’s even better! I realized I needed two different fields so that's perfect. 🥳


Reply