Jump to content

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

Recommended Posts

Posted

Do you mean something like Case( RightWords( fieldname, 1 ) = "this", ... ) ?

Posted

Hi

If this is for use in a calculation field, try this,

Case( RightWords( YourField, 1 ) = "WordToCheck", "Yes", "No")

If it is for use in a script, then,

IF["RightWords( YourField, 1 ) = "WordToCheck""]

Whatever you want if true...

ELSE

Whatever you want if false

END IF

Ed.

Sorry Queue, you beat me to it!

Posted

The ones above worked out great. I in fact had a combined calc that this solved all the problems.

Case(rightwords(Field,1)=MatchField, ResultPositive,

leftwords(Field,1)=MatchField, ResultPositive,

ResultNegative)

LR

Posted

Or Case( RightWords( Field, 1 ) = MatchField or LeftWords( Field, 1 ) = MatchField, ResultPositive, ResultNegative) for short...

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