Function Name CAT
Function Name CAT
Description
name
=AVERAGE Works out the average in a range
=MIN Returns the minimum value in a range
=MAX Returns the maximum value in a range
=SUM Works out the total in a range
=COUNT Works out how many cells are in the range
Operator Function
/ divide
* multiply
- subtract
+ add
^ to the power
B - Brackets
O - Of
D - Division
M - Multiplication
A - Addition
S – Subtraction
• Tables
• Queries
• Forms
• Reports
Mathematical
Description Example
criteria
> Return all records in which the field value [Age] >7
is greater than the value specified
>= Return all records with a field value [Age]>= 7
greater than or equal to the value
specified.
< Return all entries where the field has a [Age] <18
value less than the value specified.
<= Return all the entries in which the field [Age]>=18
value is less than or equal to the value
specified
Logical operators Description Example
Between And Return all entries in which the field [Age] between 10
contains a value that falls within two and 15
criteria values.
And Return all records in which both field [Age] = 12 AND
criteria values are present. [Sport] = “Netball”
Or Return all records where the fields meet [Age] = 12 OR
either of the field criterion values. [Sport] = “Netball”
Not Return all records where the field does not [Sport] NOT
have the given criteria value. “Netball”
Like criteria Description Example
Like * * Return all records that meet the string Like “*South*”
criterion in the field.
Like a* Return all records where the field begins Like “Sou*”
with the specified string.
Like *a Return all records where the field ends Like “*ball”
with the specified string.
Fields with no Description Example
data
Null Return all records that the field that [Cellphone]is Null
contains no data
Fields with a Description Example
certain number of
characters
“???” Return all entries with a field containing a “???”
specific number of characters (in this case,
3). REMEMBER TO INCLUDE THE QUOTES
(""). Allows Access to use quote marks for
the other requirements.