Jump to content

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

Recommended Posts

Posted

How do I do incorporate number ranges into a calculation? For example, Score = 15 to 25, Result = Advanced. I'm stuck!

Kate smile.gif

Posted

Kate:

The syntax for a range in FileMaker is "..." so in your example you'd put in "15...25". It works for dates, too.

-Stanley

Posted

Your calculation would be text and would look something like:

Case(Score > 14 and Score <= 25, "Advanced")

You can expand or adjust this accordingly:

Case(Score <= 10, "Beginner", Score <= 15, "Intermediate", Score <= 25, "Advanced", "Guru")

Posted

Thank you! I knew I was missing something. I was thinking the same thing as Stanley did above, to use the "..." for range.

Kate smile.gif

Posted

Kate:

My mistake - I didn't see you were asking about a calculation & gave you old-hat "find" advice...

-Stanley

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