ktstem Posted April 26, 2004 Posted April 26, 2004 How do I do incorporate number ranges into a calculation? For example, Score = 15 to 25, Result = Advanced. I'm stuck! Kate
stanley Posted April 26, 2004 Posted April 26, 2004 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
MoonShadow Posted April 26, 2004 Posted April 26, 2004 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")
ktstem Posted April 26, 2004 Author Posted April 26, 2004 Thank you! I knew I was missing something. I was thinking the same thing as Stanley did above, to use the "..." for range. Kate
stanley Posted April 26, 2004 Posted April 26, 2004 Kate: My mistake - I didn't see you were asking about a calculation & gave you old-hat "find" advice... -Stanley
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now