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

Sorting titles, ignoring "the" "a" "an"


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

Recommended Posts

Posted

This has to be covered somewhere, but I couldn't find it. I'm using FM9 and I want to sort a title field. I need to enter the title with the initial "The" "A" or "An" but I want the sort to ignore those. I want the title The Age of Anxiety to sort it as if it were Age of Anxiety.

Many people must have had this problem, but I can't figure out what to do. It's a shame FM doesn't have an automatic sort which will do this, but since it doesn't, can someone suggest how I can do it?

Thanks.

Mike

Posted

The solution is sorting by another ( calculated ) field, something like:

Case(

LeftWords ( Title ; 1 ) = "The"

or

LeftWords ( Title ; 1 ) = "A"

or

LeftWords ( Title ; 1 ) = "An" ; RightWords ( Title ; WordCount ( Title ) - 1 ) ;

Title

)

or simply, but with the same result:

Case(

ValueCount ( FilterValues ( LeftWords ( Title ; 1 ) ; "The¶A¶An" ) ) ; RightWords ( Title ; WordCount ( Title ) - 1 ) ;

Title

)

Posted

Daniele,

I finally got a chance to see your reply. I tried it out, and it worked perfectly.

Thanks very much for your help.

Mike Janus

This topic is 5591 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.