Filters

Filters
All
 
Category
Function Name
Arguments
Result Type
Explanation
Examples
Display Reference
More Examples
 
Binary Operators (act on multiple values) != <any> x, <any> y Boolean Same as <>. Returns true if x is not equal to y, otherwise returns false. x and y must be the same type. As with most other functions, null argument values produce a null result, so it is not possible to test for null with this operator. To test for null, use IsNull() instead. (3 / 4 <> 0.75) returns false Display Reference More examples
Binary Operators (act on multiple values) & <any> u, <any> v Text Returns a text value that is the concatenation of u and v. Use this operator to link strings of characters together in a formula text field. If u or v is not a text value, QuickBase automatically inserts the function ToText() to convert the value to text before concatenating it. Does not support User or UserList. "abc" & "def" returns "abcdef"
"abc" & 5 returns "abc5"
[First Name] & " " & [Last Name] concatenates the values in the First Name and Last Name field with a space in between them.
Display Reference More examples
Binary Operators (act on multiple values) * Number m, Number n Number Returns the product of m times n. [Price] * [Number of Units] multiplies the value in the Price field by the value in the Number of units field.
-3 * 4 returns -12
0.5 * 5 returns 2.5
Display Reference More examples
Binary Operators (act on multiple values) * Number n, Duration d Duration Returns a new Duration that is the given Duration d repeated n times. In other words, it's the duration multiplied by the number n. 3 * Days(2) returns 6 days Display Reference More examples
Binary Operators (act on multiple values) * Duration d, Number n Duration Returns a new Duration that is the given Duration d repeated n times. In other words, it's the duration multiplied by the number n. Weeks(2) * 3 returns 6 weeks Display Reference More examples
Unary Operators (act on single values) + Number n Number Returns n. A +plus sign in front of a number returns a positive number. +5 returns 5
+-5 returns -5
Display Reference More examples
Unary Operators (act on single values) + Duration d Duration Returns d. A +plus sign in front of a duration returns a positive duration. + Weeks(3) returns 3 weeks Display Reference More examples
Binary Operators (act on multiple values) + Number m, Number n Number Returns the sum of m and n. 3 + 4 returns 7
[Subtotal] + [Tax] returns the sum achieved by adding the value in the Subtotal field to the value in the Tax field.
Display Reference More examples
Binary Operators (act on multiple values) + Duration x, Duration y Duration Returns the duration that is the sum of x and y. Days(1) + Days(2) returns 3 days Display Reference More examples
Binary Operators (act on multiple values) + Date d, Duration x Date Returns the date that is after date d by the duration x. x is truncated to a whole number of days. [Start Date] + [Duration] returns the date you get by adding the value in the Duration field to the date in the Start Date field.
ToDate("Jan 1, 2000") + Days(2) returns Jan 3, 2000
Display Reference More examples
Binary Operators (act on multiple values) + Duration x, Date d Date Returns the date that is after date d by the duration x. x is truncated to a whole number of days. Days(2) + ToDate("Jan 1, 2000") returns Jan 3, 2000 Display Reference More examples
Binary Operators (act on multiple values) + Date/Time t, Duration x Date/Time Returns the Date/Time that is after Date/Time t by the duration x. [Call Time] + [Review Period] returns the date and time that follows the date/time in the Call Time field by the duration listed in the Review Period field. Display Reference More examples
Binary Operators (act on multiple values) + Duration x, Date/Time t Date/Time Returns the Date/Time that is after Date/Time t by the duration x. [Hours Worked] + [Start Time] returns the time of day resulting from adding the value in the Hours Worked field to the time in the Start Time field. Display Reference More examples
Binary Operators (act on multiple values) + Duration d, TimeOfDay t TimeOfDay Returns the TimeOfDay that is after TimeOfDay t by the duration x. ToTimeOfDay("2 pm") + Hours(22) returns 12 pm Display Reference More examples
Binary Operators (act on multiple values) + TimeOfDay t, Duration d TimeOfDay Returns the TimeOfDay that is after TimeOfDay t by the duration x. [Start Time] + [Hours Worked] returns the time of day resulting from adding the value in the Hours Worked field to the time in the Start Time field. Display Reference More examples
Unary Operators (act on single values) - Number n Number Returns the arithmetic negative of n. -5 returns -5
--5 returns 5
Display Reference More examples
Unary Operators (act on single values) - Duration d Duration Returns the arithmetic negative of d. -Weeks(3) returns -3 weeks
-Weeks(-3) returns 3 weeks
Display Reference More examples
Binary Operators (act on multiple values) - Number m, Number n Number Returns the difference of m and n. 7 - 3 returns 4
-7 - 2 returns -9
Display Reference More examples
Binary Operators (act on multiple values) - Duration x, Duration y Duration Returns the difference of x and y. Weeks(1) - Days(2) returns 5 days
Days(1) - Weeks(1) returns -6 days
Display Reference More examples
Binary Operators (act on multiple values) - Date d, Duration x Date Returns the date that is before date d by the duration x. x is truncated to a whole number of days. [Finish] - [Duration] returns the date you get by subracting the value in the Duration field from the date in the Finish field.

ToDate("Jan 3, 2000") - Days(2) returns Jan 1, 2000
Display Reference More examples
Binary Operators (act on multiple values) - Date d, Date e Duration Returns the duration between dates d and e. [Actual Date Completed] - [Forecast Date] returns the duration between the date in the Actual Date Completed field and the one in the Forecast Date field.

ToDate("Jan 3, 2000") - ToDate("Jan 1, 2000")  returns 2 days
Display Reference More examples
Binary Operators (act on multiple values) - Date/Time t, Duration x Date/Time Returns the Date/Time that is before Date/Time t by the duration x. [Event Start] - [Days to Prepare] returns the Date and time that precedes the event start by the number of days in the Days to Prepare field. Display Reference More examples
Binary Operators (act on multiple values) - Date/Time t, Date/Time u Duration Returns the duration between Date/Time values t and u. [Created] - [Time/Date Resolved] Display Reference More examples
Binary Operators (act on multiple values) - TimeOfDay t, Duration d TimeOfDay Returns the TimeOfDay that is before TimeOfDay t by the duration d. [Meeting Start] - [Hours of Prep] returns the time that precedes the Meeting Start time by the number of hours listed in the Hours of Prep field. Display Reference More examples
Binary Operators (act on multiple values) - TimeOfDay t, TimeOfDay u Duration Returns the duration between TimeOfDay t and TimeOfDay u. The result may be positive or negative depending on whether t is after or before u. [End] - [Start] returns the duration you get by subtracting the time value in the Start field from the value in the End field.
ToTimeOfDay("3pm") - ToTimeOfDay("2pm") returns 1 hour
ToTimeOfDay("2pm") - ToTimeOfDay("3pm") returns -1 hour
Display Reference More examples
Binary Operators (act on multiple values) / Number m, Number n Number Returns m divided by n. 6 / 4 returns 1.5
Display Reference More examples
Binary Operators (act on multiple values) / Duration x, Duration y Number Returns the number of times that Duration y divides into x. Weeks(1) / Days(1) returns 7
Display Reference More examples
Binary Operators (act on multiple values) / Duration x, Number n Duration Returns a new Duration that is x divided by n. Weeks(2) / 2 returns 1 week
Display Reference More examples
Binary Operators (act on multiple values) < <any> x, <any> y Boolean Returns true if x is less than y, otherwise returns false. x and y must be the same type. For Numbers, the comparison is numerical. For Durations, the comparison is done using length of time represented. For Text, the comparison is done by alphabetical sort order. For Dates, Date/Time, and Time of Day values, the comparison is done by chronological order. For Booleans, false is less than true. 3 < 4 returns true
4 < 3 returns false
"abcdef" < "gh" returns true
Display Reference More examples
Binary Operators (act on multiple values) <= <any> x, <any> y Boolean Returns true if x is less than or equal to y, otherwise returns false. x and y must be the same type. For Numbers, the comparison is numerical. For Durations, the comparison is done using length of time represented. For Text, the comparison is done by alphabetical sort order. For Dates, Date/Time, and Time of Day values, the comparison is done by chronological order. For Booleans, false is less than true. 3 <= 4 returns true
"abcdef" <= "gh" returns true
Display Reference More examples
Binary Operators (act on multiple values) <> <any> x, <any> y Boolean Same as !=. Returns true if x is not equal to y, otherwise returns false. x and y must be the same type. As with most other functions, null argument values produce a null result, so it is not possible to test for null with this operator. To test for null, use IsNull() instead. (3 / 4 <> 0.75) returns false Display Reference More examples
Binary Operators (act on multiple values) = <any> x, <any> y Boolean Returns true if x is equal to y, otherwise returns false. x and y must be the same type. As with most other functions, null argument values produce a null result, so it is not possible to test for null with this operator. To test for null, use IsNull() instead. (3 / 4 = 0.75) returns true
Display Reference More examples
Binary Operators (act on multiple values) > <any> x, <any> y Boolean Returns true if x is greater than y, otherwise returns false. x and y must be the same type. For Numbers, the comparison is numerical. For Durations, the comparison is done using length of time represented. For Text, the comparison is done by alphabetical sort order. For Dates, Date/Time, and Time of Day values, the comparison is done by chronological order. For Booleans, false is less than true. 3 > 4 returns false

[Actual Completion Date] >= [Projected Completion Date] returns true if the value in the the Actual Completion Date field is greater than the date in the Project Completion Date field.

Weeks(1) > Days(6) returns true
Display Reference More examples
Binary Operators (act on multiple values) >= <any> x, <any> y Boolean Returns true if x is greater than or equal to y, otherwise returns false. x and y must be the same type. For Numbers, the comparison is numerical. For Durations, the comparison is done using length of time represented. For Text, the comparison is done by alphabetical sort order. For Dates, Date/Time, and Time of Day values, the comparison is done by chronological order. For Booleans, false is less than true. [Actual Completion Date] >= [Projected Completion Date] returns true if the value in the the Actual Completion Date field is greater than or equal to the date in the Project Completion Date field.

ToDate("Jan 1, 2000") >= ToDate("Feb 1, 1999") returns true
Display Reference More examples
Binary Operators (act on multiple values) ^ Number m, Number n Number Returns m raised to the nth power. 2 ^ 3 returns 8
9 ^ 0.5 returns 3
2 ^ -3 returns 0.125
Display Reference More examples
Numbers Abs (Number n) Number Returns the absolute value of the Number n. Abs(3.5) returns 3.5
Abs(-3.5) returns 3.5
Display Reference More examples
Durations Abs (Duration d) Duration Returns the absolute value of d. Abs(Weeks(3.5)) returns 3.5 weeks
Abs(Weeks(-3.5)) returns 3.5 weeks
Display Reference More examples
Dates AdjustMonth (Date d, Number m) Date Returns the date which is m months after the given date d, with the same day number. If the day doesn't exist in that month, the last day of that month is returned. AdjustMonth([Ordered On], 3) returns the date three months after the date in the Ordered On field.

AdjustMonth(ToDate("2/20/99"), 2) returns April 20, 1999
AdjustMonth(ToDate("4/29/99"), -2) returns February 28, 1999
Display Reference More examples
Dates AdjustYear (Date d, Number y) Date Returns the date which is y years after the given date d, with the same month and day. If the day doesn't exist in that month, the last day of that month is returned. AdjustYear([Last Appt], 1) returns the date one year after the date in the Last Appt field.
AdjustYear([Date],-1) returns the date one year before the value in the Date field,
AdjustYear(ToDate("2/20/99"), 2) returns February 20, 2001
AdjustYear(ToDate("2/29/00"), -1) returns February 28, 1999
Display Reference More examples
Binary Operators (act on multiple values) and Boolean a, Boolean b Boolean Returns true if a and b are both true, otherwise returns false. Use this operator to link conditions together. (true and false) returns false

[Decision - Technical Lead]="Approved" and
[Decision - Project Manager]="Approved" and 
[Decision - Project Sponsor]="Approved" 
returns true if all three fields contain the value "approved"
Display Reference More examples
Special AppID () Text Returns a text value containing the database ID of the app. AppID() in this app returns "6ewwzuuj" Display Reference More examples
Aggregation Average (Number n, ...) Number Returns the average of all the arguments (except any null values). Average(12, 6, null) returns 9

Display Reference More examples
Aggregation Average (Duration d, ...) Duration Returns the average of all the arguments (except any null values). Average(Days(1), Days(3)) returns 2 days Display Reference More examples
Aggregation Average (Date d, ...) Date Returns the average of all the arguments (except any null values). Average(ToDate("1/1/2000"), ToDate("1/3/2000")) returns the date 1/2/2000 Display Reference More examples
Aggregation Average (Date/Time t, ...) Date/Time Returns the average of all the arguments (except any null values). average([Actual Finish], [Planned Finish]) Display Reference More examples
Aggregation Average (TimeOfDay t, ...) TimeOfDay Returns the average of all the arguments (except any null values). Average([Mon Start Time], [Tues Start Time], [Wed Start Time]) returns the average of all three start times. Display Reference More examples
Encoding Functions Base64Decode (Text t) Text Decodes text using base64 encoding. Base64Decode("aGVsbG8gd29ybGQ=") returns "hello world" Display Reference More examples
Encoding Functions Base64Encode (Text t) Text Encodes text using base64 encoding. Base64Encode("hello world") returns "aGVsbG8gd29ybGQ=" Display Reference More examples
Text Begins (Text u, Text v) Boolean Returns true if the text u begins with the text v, otherwise returns false. Begins("abcdef", "cd") returns false
Begins("abcdef", "abcd") returns true
Display Reference More examples
Special Case (<any> x, <any> val1, <any> result1, ..., <any> else-result) <same type as result1> Case() is a variation of the If() function. If you want to test many conditions against a single field, use the Case() function instead of the If() function. QuickBase evaluates the value x and compares it to each of the values that follow (val1 and so on) sequentially. If the value X matches any value, QuickBase returns the corresponding result which lives behind the comma following the matched value. If value x is not equal to any of the values, QuickBase returns the else-result at the end of the formula. The else-result is optional. If omitted, QuickBase assumes it's null (empty). The value x may be of any data type, but all of the values must be of the same type as x. Case([Grade], "A", 100, "B", 90, null)

This formula says: If the value in the Grade field is A, then return 100. If the value in the Grade field is B, then return 90. Otherwise, return nothing (null).

Display Reference More examples
Rounding and Truncating Ceil (Number x) Number Returns the smallest integer greater than or equal to the number x. Ceil(3) returns 3
Ceil(3.4) returns 4
Ceil(-3.4) returns -3
Display Reference More examples
Rounding and Truncating Ceil (Number x, Number y) Number Returns the smallest multiple of y which is greater than or equal to x. Ceil(3.5, 2) returns 4
Ceil(-3.5, 2) returns -2
Display Reference More examples
Rounding and Truncating Ceil (Duration x, Duration y) Duration Returns the smallest multiple of the duration y which is greater than or equal to the duration x. Ceil(Days(3.5), Days(2)) returns Days(4)
Display Reference More examples
Text Contains (Text u, Text v) Boolean Returns true if v is contained in u, otherwise returns false. Contains("abcdef", "cd") returns true
Contains([Status], "open") returns true if the Status field contains the word "open"
Display Reference More examples
TextList Contains (TextList textList, Text textToSearchFor) Boolean Returns true if textToSearchFor is contained in textList, otherwise returns false. Comparison is not case sensitive. Contains([Skills Required], "Kung fu") returns true if the "Skills required" field has as one of its selected options "Kung fu" Display Reference More examples
UserList Contains Contains (UserList userList, User userToSearchFor) Boolean Returns true if userToSearchFor is contained in userList, otherwise returns false. Contains([Team members], [Assigned To]) returns true if the value of the "Assigned To" field appears in the "Team members" list Display Reference More examples
Aggregation Count (<any> x, ...) Number Counts the number of non-null arguments. For Text arguments, non-blanks are counted. For Boolean arguments, trues are counted. This function can also be used in the context of a Summary report where it will count the # of Non-null records for each grouping, if used to specify the field to check in a Calculated Column. Count ("", "abc", true, false, 53) returns 3

For the Summary Report example, a formula might look something like this:

Count([Field])

This might be used if the customer were trying to determine - within the Summary Report groups - how many of these records had a value in [Field]
Display Reference More examples
Dates Date (Number year, Number month, Number day) Date Creates a date from a year, month and day. Date(2000, 1, 10) returns the date January 10, 2000 Display Reference More examples
Dates Day (Date d) Number Returns the day of the month of the given Date d. Day([Start Date]) returns the day of the month for the date that appears in the Start Date field.

Day(ToDate("Jan 10, 2000")) returns 10
Display Reference More examples
Dates DayOfWeek (Date d) Number Returns the number of days by which the given date d follows the first day of the week (Sunday returns 0). DayOfWeek([Start Date]) returns the number of the day of the week for the date that appears in the Start Date field.
DayOfWeek(ToDate("Aug 23, 2000")) returns 3
DayOfWeek(ToDate("Aug 20, 2000")) returns 0
Display Reference More examples
Dates DayOfYear (Date d) Number Returns the number of days by which the given date d follows the first day of the year (January 1 returns 0). DayOfYear(ToDate("Jan 1, 2000")) returns 0
DayOfYear(ToDate("Jan 10, 2000")) returns 9
Display Reference More examples
Durations Days (Number n) Duration Returns a Duration representing n days. This function takes a number and converts it into a Duration type value, expressed in days. Days(1.5) returns a 1.5 day duration
Days([Estimated # of days]) converts the numeric value in the Estimated # of days field into a duration expressed in days. The number doesn't change, just the data type.
Display Reference More examples
Special Dbid () Text Returns a Text value containing the database ID of a table. Dbid() in this database returns "6ewwzuuj" Display Reference More examples
Text Ends (Text u, Text v) Boolean Returns true if the text u ends with the text v, otherwise returns false. Ends("abcdef", "cd") returns false
Ends("abcdef", "cdef") returns true
Display Reference More examples
Numbers Exp (Number n) Number Returns e raised to the nth power, where e is approximately 2.71828182845905 This exponential function is for use in logarithmic calculations that track growth. For example, you can use it to figure compounding interest. Exp(2) returns 7.389056 (which is e, or 2.71828182845905, to the 2nd power)

Exp(5) returns 148.413159 (e to the 5th power)
Display Reference More examples
Text Find (Text str, Text searchString) Numeric Returns the index where searchString starts to appear in str. If not found, returns 0. Example: Find("Hello World", "Wo") returns 7
Find("Hello World", "H") returns 1
Find("Hello World", "X") returns 0
Display Reference More examples
Dates FirstDayOfMonth (Date d) Date Returns the first day of the month in which the date falls. FirstDayOfMonth([Order Date]) returns the first day of the month in which the Order Date occurs.

FirstDayOfMonth(Today()) returns the first day of the current month.
Display Reference More examples
Dates FirstDayOfPeriod (Date d, Duration p, Date r) Date Returns the first day of the period in which the date d falls. The cycle of periods is defined by the given Duration p, repeated in sequence starting at the given reference date r. If the period p is not a whole number of days, the fractional part is ignored. Useful for handling biweekly pay periods.

FirstDayOfPeriod([date field], Weeks(2), Date(2000,5,1)) returns the date that is the start of the two week period in which the date in the date field falls. The initial two week period that starts the cycle begins on May 1, 2000.


FirstDayOfPeriod(Today(), Days(365), Date(2005,7,1)) returns the date July 1st of the current year-long period. Between 7/1/06 and 7/1/07 this would be July 1, 2006. (As the years go on, this method won't account for leap years.)
Display Reference More examples
Dates FirstDayOfWeek (Date d) Date Returns the first day (Sunday) of the week in which the date falls. FirstDayOfWeek([Start Date]) returns the date of the Sunday (first day of the week) in which the Start Date occurs.
FirstDayOfWeek(ToDate("7/30/2007")) returns the date 7-29-07
Display Reference More examples
Dates FirstDayOfYear (Date d) Date Returns the first day of the year in which the date falls. FirstDayOfYear([Termination Date]) returns the first day of the year in which the Termination date occurs.

FirstDayOfYear(Today()) returns the first day of the current year.
Display Reference More examples
Rounding and Truncating Floor (Number x) Number Returns the largest integer less than or equal to the number x. Note that if x is a negative fraction, the result is closer to negative infinity than x is (compare to function Int). Floor(3) returns 3
Floor(3.4) returns 3
Floor (3.8) returns 3
Floor(-3.4) returns -4
Display Reference More examples
Rounding and Truncating Floor (Number x, Number y) Number Returns the largest multiple of y which is less than or equal to x. Floor(3.5, 2) returns 2
Floor(-3.5, 2) returns -4
Display Reference More examples
Rounding and Truncating Floor (Duration x, Duration y) Duration Returns the largest multiple of the duration y which is less than or equal to the duration x. Floor(Days(3.5), Days(2)) returns Days(2)
Display Reference More examples
Numbers Frac (Number n) Number Returns the fractional part of the Number n. The result is the same sign as n. For any Number n, Int(n) + Frac(n) is the same as n. Frac(3.4) returns 0.4
Frac(-2.3) returns -0.3
Display Reference More examples
Special GetFieldProperty (Number fid, Text prop) <Boolean, Text, or Number> Returns the value of the field property prop, in the field fid, in the current table.  The properties currently supported are "currencyFormat", "currencySymbol", "fieldType", "maxLength", "required", and "unique". GetFieldProperty(15,"required") returns true if field 15 in the current table is required, false if not. Display Reference More examples
Queries GetFieldValues (RecordList l, Number f) Text Collection Returns values of fields with field id f from records in l. Use in Formula- Multi-select Text field. GetFieldValues(GetRecord(1), 3), returns [“1”]. Display Reference More examples
Queries GetRecord (Number r) Record Collection Returns record with record id r from the current table. Use this formula to obtain a record list for GetFieldValues. GetRecord(1) returns a list of records, in this case containing a single record with Record ID# 1. Display Reference More examples
Queries GetRecord (Number r, Text t) Record Collection Returns record with record id r from table with dbid t. Use this formula to obtain a record list for GetFieldValues. GetRecord (1, “bck7gp3q2”) returns record with Record ID# 1 from table with dbid “bck7gp3q2”. Display Reference More examples
Queries GetRecords (Text q) Record Collection Returns records matching the criteria set by query q from current table. Use this formula to obtain record list for GetFieldValues.

Note that queries within this formula use API query syntax.
GetRecords (“{3.GT.0}”) returns all records in current table for which the field with id 3 has value greater than 0. Display Reference More examples
Queries GetRecords (Text q, Text t) Record Collection Returns records matching the criteria set by query q from table with dbid t. Use this formula to obtain record list for GetFieldValues.

Note that queries within this formula use API query syntax.
GetRecords("{3.GT.0}", "bck7gp3q2") returns all records from table with dbid “bck7gp3q2” for which the field with id 3 has value greater than 0.



Display Reference More examples
TimeOfDay Hour (TimeOfDay t) Number Returns the hour part of the argument t. The hour is in the range 0 to 23. Hour(ToTimeOfDay("3:04pm")) returns 15 Display Reference More examples
Durations Hours (Number n) Duration Returns a Duration representing n hours. This function takes a number and converts it into a Duration type value, expressed in hours. Hours(4) returns a 4 hour duration
[Intake Time]+Hours(2) returns the time of day from the Intake Time field plus two hours.
Hours([Test Length in Hours]) converts the numeric value in the Test Length in Hours field into a duration expressed in hours. The number doesn't change, just the data type.
Display Reference More examples
Special If (Boolean condition1, <any> result1, ..., <any> else-result) <same type as result1> If condition1 is true, returns result1, otherwise returns else-result. You can include additional condition/result pairs before the final else-result (as in the first example). QuickBase evaluates the conditions in sequence until one is found to be true, and then the corresponding result is returned. The else-result is optional. If omitted, QuickBase assumes it's null (or empty - a blank). All conditions must be of type Boolean (return a true or a false). Results may be of any type, but they must all be the same type. If([Grade]="A", 100, [Grade]="B", 90)

This formula says: if the value in the Grade field is A, then return 100. If the value in the Grade field is B, then return 90.

IF([Order Complete]=TRUE, [Subtotal] + [Tax], null)

This formula says: If the Order Complete checkbox is on, then add the value in the subtotal field to the value in the tax field and display it. If not, then leave the field empty (or null).

Display Reference More examples
Special Includes (UserList ul, UserList ul1,UserList ul2 ..) Boolean This function takes 2 or more list-user field types as arguments and returns true if the contents of all the the arguments together, except for the first, are included in the contents of first argument; false otherwise. Includes ([Assigned To] , [Manager], [Employee])

This will return true if all the users in the Manager field and Employee field are selected for Assigned To field.
Display Reference More examples
Numbers Int (Number n) Number Returns the integer part of Number n. Note that if n is a negative fraction, the result is closer to 0 than n is (compare to function Floor). Int(3.6) returns 3
Int(3) returns 3
Int(-3.6) returns -3
Display Reference More examples
Dates IsLeapDay (Date d) Boolean Returns true if d is February 29. IsLeapDay([Date Due]) returns true if the value in the Date Due field falls on a leap day like 2/29/08. Display Reference More examples
Dates IsLeapYear (Date d) Boolean Returns true if the date d falls in a leap year. IsLeapYear([Release Date]) returns true if the date in the Release Date field falls in a leap year like 2008. If it occurs in a non leap year, like 2007, the result is false. Display Reference More examples
Dates IsLeapYear (Number y) Boolean Returns true if the year y is a leap year. IsLeapYear(2007) returns false.
IsLeapYear(2008) returns true.
Display Reference More examples
Null Handling IsNull (<any> x) Boolean Null means that a field's value is undefined. In other words, no one has entered any data in that particular field. It's empty. Its value is null. The result of this function is true if x is null, otherwise false. The argument x may be of any data type (except text or boolean). IsNull([Start Date]) returns true if the field named Start Date is undefined or empty.
IsNull(3.4) returns false
Display Reference More examples
Special IsUserEmail (Text x) Boolean Returns true if x is the email address of the current user. IsUserEmail("john_smith@example.com") would return true if John Smith were accessing the table containing the formula field. Display Reference More examples
Dates IsWeekday (Date d) Boolean Returns true if d is a weekday, otherwise false. IsWeekday([Deliver On]) returns true if the date in the Deliver On field is a weekday. If not, the result is false.

IsWeekday(ToDate("6/20/2003")) returns true
Display Reference More examples
Dates LastDayOfMonth (Date d) Date Returns the last day of the month in which the date falls. LastDayOfMonth([Service Date]) returns the date of the last day of the month in which the Service Date occurs.

LastDayOfMonth(ToDate("2/12/2008")) returns 
02-29-2008
Display Reference More examples
Dates LastDayOfPeriod (Date d, Duration p, Date r) Date Returns the last day of the period in which the date falls. The cycle of periods is defined by the given Duration p, repeated in sequence starting at the given reference date r. If the period p is not a whole number of days, the fractional part is ignored. LastDayOfPeriod([Payment Date], [Quarter Length in Days], [Fiscal Year Start Date]) returns the last day of the quarter in which the Payment Date falls. Display Reference More examples
Dates LastDayOfWeek (Date d) Date Returns the last day (Saturday) of the week in which the date falls. LastDayOfWeek([Date A]) + Days(1) returns the Sunday date of the week that follows the one in which Date A falls. Display Reference More examples
Dates LastDayOfYear (Date d) Date Returns the last day of the year in which the date falls. LastDayOfYear([Registration Date]) returns the last day of the year in which the Registration Date falls.

LastDayOfYear(Todate("August 4, 2009")) returns 12-31-2009
Display Reference More examples
Text Left (Text t, Number n) Text Returns the leftmost n characters from the Text argument t. Left("abcd", 2) returns "ab" Display Reference More examples
Text Left (Text t, Text d) Text Returns the left part of a text value up to but not including the first occurrence of a delimiter character. The first argument, t, is the value to be searched. The second argument, d, is a text value containing all the possible delimiter characters. Left("abc/def",";/,") returns "abc"
Left("Michael Smith", " ") returns "Michael"
Display Reference More examples
Text Length (Text t) Number Returns the number of characters in t. Length("abc") returns 3 Display Reference More examples
Text List (Text d, Text t1, Text t2, ...) Text Concatenates (strings together) all arguments starting with the second argument, using the first argument as the delimiter between them. If one of the arguments is blank, it and the corresponding delimiter are omitted. List("-", "a", "b", "d") returns "a-b-d"

List(", ", "a", "b", "", "d") returns "a, b, d"

List(", ", [Last Name], [First Name]) returns "Last Name, First Name" if both fields are not empty, returns "Last Name" if [First Name] is empty, and returns "First Name" if [Last Name] is empty.

List("\n", "Name", "Address Line 1", "", List(", ", "City", "State"), "Zip") returns
"Name
Address Line 1
City, State
Zip"
Display Reference More examples
Numbers Ln (Number n) Number Returns the natural (base e) logarithm of n. Exp(Ln(72)) returns 72 Display Reference More examples
Result Pages:  1  2  3    

We're glad you're interested in doing more with Quickbase!

Now we need to make you official before you share apps or manage your account.

Verifying your email lets you share Quickbase with others in your company.

Your work email
Your company
Report Name *
Description
Reports and Charts Panel
Each table has a panel listing its reports and charts, organized in groups.
This report will be listed only for you, in the group Mine.
Only you can see the report in the panel. You can't ever list it for other users. You can still let others open it by sending them links.
Please wait while your new report is saved...
Field label
Column heading override
Justification
What does auto mean?
Fields in:

Fields to Extract:

Name for the new table:
Items in the new table are called:

When you bring additional fields into a conversion, Quickbase often finds inconsistencies. For example, say you're converting your Companies column into its own table. One company, Acme Corporation, has offices in New York, Dallas and Portland. So, when you add the City column to the conversion, Quickbase finds three different locations for Acme. A single value in the column you're converting can only match one value in any additional field. Quickbase needs you to clean up the extra cities before it can create your new table. To do so, you have one of two choices:

Read more about converting a column into a table.

Show fields from Show fields from Show fields from a related table