Gallery
Multiple Choice Quiz: Airtable Formula Functions
Share
Explore
Quiz Settings

icon picker
Question to Study

Filter this view of the to include only the questions you want to include in your next quiz. Filter by question group or use the checkbox to hand pick specific questions.
Questions to Study
Search
Question
Answer
Groups
Checkbox
What
operator
matches this description:

Greater than
>
What
operator
matches this description:

Less than
<
What
operator
matches this description:

Great than or equal
>=
What
operator
matches this description:

Less than or equal
<=
What
operator
matches this description:

Equal
=
What
operator
matches this description:

Is not equal to
!=
What
operator
matches this description:

Add
+
What
operator
matches this description:

Subtract
-
What
operator
matches this description:

Multiply
*
What
operator
matches this description:

Divide
/
What
operator
matches this description:

Concatenate text values
&
What
function
matches this description:

Join the array of items into a string with a separator.
ARRAYJOIN()
What
function
matches this description:

Joins together the text arguments into a single text value.

To concatenate static text, surround it with double quotation marks. To concatenate double quotation marks, you need to use a backslash (\) as an escape character.
CONCATENATE()
What
function
matches this description:

Replaces certain characters with encoded equivalents for use in constructing URLs or URIs. Does not encode the following characters: - _ . ~
ENCODE_URL_COMPONENT()
What
function
matches this description:

Finds an occurrence of one string inside another.
FIND()
What
function
matches this description:

Extract howMany characters from the beginning of the string.
LEFT()
What
function
matches this description:

Returns the length of a string.
LEN()
What
function
matches this description:

Makes a string lowercase.
LOWER()
What
function
matches this description:

Extract a substring of count characters starting at whereToStart.
MID()
What
function
matches this description:

Replaces the number of characters beginning with the start character with the replacement text.
REPLACE()
What
function
matches this description:

Repeats string by the specified number of times.
REPT()
What
function
matches this description:

Extract howMany characters from the end of the string.
RIGHT()
What
function
matches this description:

Searches for an occurrence of one string inside another.
SEARCH()
What
function
matches this description:

Replaces occurrences of old_text with new_text.
SUBSTITUTE()
What
function
matches this description:

Returns the argument if it is text and blank otherwise.
T()
What
function
matches this description:

Removes whitespace at the beginning and end of string.
TRIM()
What
function
matches this description:

Makes string uppercase.
UPPER()
What
function
matches this description:

Returns true if all the arguments are true, returns false otherwise.
AND()
What
function
matches this description:

Returns a blank value.
BLANK()
What
function
matches this description:

Returns the error value.
ERROR()
What
function
matches this description:

Logical value false. False is represented numerically by a 0.
FALSE()
What
function
matches this description:

Returns value1 if the logical expression is true, otherwise it returns value2.
IF()
What
function
matches this description:

Returns true if the expression causes an error.
ISERROR()
What
function
matches this description:

Reverses the logical value of its argument.
NOT()
What
function
matches this description:

Returns true if any one of the arguments is true.
OR()
What
function
matches this description:

Converts values into new values. For each original value, it matches the other value to use. Mapping
SWITCH()
What
function
matches this description:

Logical value true. The value of true is represented numerically by a 1.
TRUE()
What
function
matches this description:

Returns true if an odd number of arguments are true.
XOR()
What
function
matches this description:

Returns the absolute value.
ABS()
What
function
matches this description:

Returns the average of the numbers.
AVERAGE()
What
function
matches this description:

Always rounds up to next place value determined by user. Defaults precision to 1
CEILING()
What
function
matches this description:

Count the number of numeric items.
COUNT()
What
function
matches this description:

Count the number of non-empty values. This function counts both numeric and text values.
COUNTA()
What
function
matches this description:

Count the number of all elements including text and blanks.
COUNTALL()
What
function
matches this description:

Returns the smallest even integer that is greater than or equal to the specified value.
EVEN()
What
function
matches this description:

Computes Euler's number (e) to the specified power.
EXP()
What
function
matches this description:

Always rounds number down to place value indicated by user. Defaults precision to 1.
FLOOR()
What
function
matches this description:

Returns the greatest integer that is less than or equal to the specified value.
INT()
What
function
matches this description:

Computes the logarithm of the value in provided base. The base defaults to 10 if not specified.
LOG()
What
function
matches this description:

Returns the largest of the given numbers.
MAX()
What
function
matches this description:

Returns the smallest of the given numbers.
MIN()
What
function
matches this description:

Returns the remainder after dividing the first argument by the second.
MOD()
What
function
matches this description:

Rounds positive value up the the nearest odd number and negative value down to the nearest odd number.
ODD()
What
function
matches this description:

Computes the specified base to the specified power.
POWER()
What
function
matches this description:

Rounds the value to the number of decimal places given by "precision.".
ROUND()
What
function
matches this description:

Rounds the value to the number of decimal places given by "precision," down. MUST add precision
ROUNDDOWN()
What
function
matches this description:

Rounds the value to the number of decimal places given by "precision," always rounding up, MUST add precision
ROUNDUP()
What
function
matches this description:

Returns the square root of a nonnegative number.
SQRT()
What
function
matches this description:

Sum together the numbers. Equivalent to number1 + number2 + ...
SUM()
What
function
matches this description:

Converts the text string to a number. If string has non numeric characters, result may not be as expected.
VALUE()
What
function
matches this description:

Returns the date and time a given record was created.
CREATED_TIME()
What
function
matches this description:

Adds specified "count" units to a datetime. Specify units (months, days, years etc.)
DATEADD()
What
function
matches this description:

Formats a datetime into a string (YYYY-MM-DD).
DATESTR()
What
function
matches this description:

Returns the difference between datetimes in specified units.

DATETIME_DIFF()
What
function
matches this description:

Formats a datetime into a specified string.
DATETIME_FORMAT()
What
function
matches this description:

Turns text string into date object.
DATETIME_PARSE()
What
function
matches this description:

Returns the day of the month of a datetime in the form of a number between 1-31.
DAY()
What
function
matches this description:

Returns the hour of a datetime as a number between 0 (12:00am) and 23 (11:00pm).
HOUR()
What
function
matches this description:

Determines if [date1] is later than [date2]. Returns 1 if yes, 0 if no.
IS_AFTER()
What
function
matches this description:

Determines if [date1] is earlier than [date2]. Returns 1 if yes, 0 if no.
IS_BEFORE()
What
function
matches this description:

Compares two dates up to a unit and determines whether they are identical. Returns 1 if yes, 0 if no.
IS_SAME()
What
function
matches this description:

Returns date and time of most recent modification to a non computed field in the record
LAST_MODIFIED_TIME()
What
function
matches this description:

Returns the minute of a datetime as an integer between 0 and 59.
MINUTE()
What
function
matches this description:

Returns the month of a datetime as a number between 1 (January) and 12 (December).
MONTH()
What
function
matches this description:

Returns the current date AND time. NOT updated regularly
NOW()
What
function
matches this description:

Returns the second of a datetime as an integer between 0 and 59.
SECOND()
What
function
matches this description:

Sets a specific locale for a datetime. Must be used in conjunction with DATETIME_FORMAT.
SET_LOCALE()
What
function
matches this description:

Sets a specific timezone for a datetime. Must be used in conjunction with DATETIME_FORMAT.
SET_TIMEZONE()
What
function
matches this description:

Formats a datetime into a time-only string (HH:mm:ss).
TIMESTR()
What
function
matches this description:

Calculates the length of time between given date and now
FROMNOW()
What
function
matches this description:

Calculates the length of time between given date and now
TONOW()
What
function
matches this description:

Returns the current date with the time of 12:00am GMT. Not updated regularly.
TODAY()
What
function
matches this description:

Returns the day of the week as an integer between 0 and 6.
WEEKDAY()
What
function
matches this description:

Returns the week number in a year.
WEEKNUM()
What
function
matches this description:

Returns a date that is numDays working days after startDate.
WORKDAY()
What
function
matches this description:

Counts the number of working days between startDate and endDate.
WORKDAY_DIFF()
What
function
matches this description:

Returns the four-digit year of a datetime.
YEAR()
What
function
matches this description:

Removes empty strings and null values from the array. Keeps "false" and strings that contain one or more blank characters.
ARRAYCOMPACT()
What
function
matches this description:

Flattens the array by removing any array nesting. All items become elements of a single array.
ARRAYFLATTEN()
What
function
matches this description:

Join the array of items into a string with a separator.
ARRAYJOIN()
What
function
matches this description:

Returns only unique items in the array.
ARRAYUNIQUE()
What
function
matches this description:

Returns the date and time a given record was created.
CREATED_TIME()
What
function
matches this description:

Returns the ID of the current record.
RECORD_ID()
What
function
matches this description:

Returns whether the input text matches a regular expression.
REGEX_MATCH()
What
function
matches this description:

Returns the first substring that matches a regular expression.
REGEX_EXTRACT()
What
function
matches this description:

Substitutes all matching substrings with a replacement string value.
REGEX_REPLACE()
There are no rows in this table

This quiz is free, but creating it takes time and money.

Share
 
Want to print your doc?
This is not the way.
Try clicking the ⋯ next to your doc name or using a keyboard shortcut (
CtrlP
) instead.