Filemaker Pro 9 (117) Flashcards
1
Q
This set entered on 8-3-14
8.2.14.6
- Many times you need to know either the highest or the lowest value in a series. How do you find out?
A
Use the MAX or MIN Functions. They are found in the Function List, under AGGREGATE FUNCTIONS.
2
Q
- Like all AGGREGATE FUNCTIONS, the Min and Max expect at least one parameter, and each parameter should be:
A
a number.
3
Q
- Parameters for the Min or Max functions can be:
A
a. Constant data
b. Fields with a record
c. Repeating fields
d. Related fields
4
Q
- What does the Max Function do?
A
It looks at every number referenced and returns whichever is greatest. Min returns the smallest value.
5
Q
- What would this calc return: Max ( 10 ; 3 ; 72 ; 19 ; 4 )?
A
72
6
Q
- What would this calc find: Max ( Line Items::Price )?
A
The most expensive item.
7
Q
- With both Repeating Fields and Related Fields, you pass JUST ONE FIELD to the Min or Max function, but FileMaker considers:
A
ALL the values in that field. If it’s a REPEATING FIELD, FileMaker considers every repetition. If it’s a RELATED FIELD, its value from every related record is considered.