Skip to content
View in the app

A better way to browse. Learn more.

FMForums.com

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Matching first character to an Alphabetic list

Featured Replies

I have been tasked with segmenting our customer database alphabetically.  I have certain territories which require any customer organization whose name starts with A-M go to one employee and N-Z to a second one.

 

If the Organization = Bluefish Industry and it matches any character within the list "ABCDEFGHIJKLM"  

I would like it to return 0 or 1.

 

I would also like to be able to handle stripping out any articles in the event the corporation name is 

"The Bluefish Industry"

 

I was looking at using PatternCount (Left(company_name;1); "ABCDEFGHIJKLM") however I don't believe I have it formatted correctly.

 

 

Any ideas?

You've got it backwards - it needs to be =

PatternCount ( "ABCDEFGHIJKLM" ; Left ( company_name ; 1 ) )
I would also like to be able to handle stripping out any articles

 

Are there any articles other than "The" that would qualify?

  • Author

The is the only article to filter.

Ok, so how about =

Let ( [
art = LeftWords ( company_name ; 1 ) = "the" ;
word = MiddleWords ( company_name ; 1 + art ; 1 )
] ;
Left ( word ; 1 ) > "m"
)

Or, if you prefer =


...
] ;
word ≥ "n"
)

Create an account or sign in to comment

Important Information

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

Account

Navigation

Search

Search

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.