---
sourceDocument: Australia Platform Analytics
sourceDocumentLink: https://www.servicenow.com/docs/r/now-intelligence

 Release :

    - australia

ft:locale :

    - en-US

ft:publication_title :

    - Australia Platform Analytics

ft:clusterId :

    - par

bundleId :

    - par

workflow :

    - Platform


---

# Report on function fields

# Report on function fields {#ariaid-title1}

Release version: Australia  
Updated August 17, 2026  
![](https://www.servicenow.com/docs/portal-asset/ico-clock) 4 minutes to read
Summarize  
![AI sparkle icon](https://servicenow.com/docs/portal-asset/ai-sparkle-icon) Summarized using AI  
This content was generated using new OpenAI-powered functionality. Results are provided on an as is basis and are not guaranteed to be accurate or complete.  

## Summary of Report on function fields

Function fields in ServiceNow display dynamically computed values based on database queries rather than storing static data.
These fields derive results from calculations involving other fields and constants and can be used seamlessly in reports and data visualizations just like regular fields.
Configuration and management of function fields require thefunctionfieldadminrole, which administrators must assign after upgrades.
Show full answer Show less  
Function fields are configurable only through the Core UI Report Designer and are accessible in both Core UI and Platform Analytics experiences for reporting purposes, though creation is limited to the Core UI.

## Function field operations

Function fields support a variety of operations using the `glidefunction:<operation>` syntax. These operations enable numerical calculations, string manipulations, date/time computations, and conditional value selection. Constants must be enclosed in single or double quotes. Key operations include:

* **add(), subtract(), multiply(), divide()**: Perform arithmetic on numeric fields or constants, returning numeric results.
* **concat()**: Concatenates multiple fields or constants into a single text string.
* **datediff()**: Calculates the duration between two date/time fields, returning a duration value.
* **dayofweek()**: Returns the day of the week as an integer based on a date field and week start parameter.
* **length()**: Returns the character length of a string field.
* **coalesce()**: Returns the first non-empty value from a list of fields.
* **position()**: Finds the position of a substring within a text field, optionally from a specific offset.
* **substring()**: Extracts a substring from a text field given start position and length.

## Configuring function fields

Function fields can be created, edited, deactivated, and deleted with role-based permissions:

* **Creation:** Up to 20 active function fields per table can be configured in Report Designer. They enable grouping and stacking reports based on computed values.
* **Editing:** Creators or users with admin/functionfieldadmin roles can edit function field definitions, but cannot change the label or return type once saved.
* **Deactivation:** Creators or admins can deactivate fields to free slots for new function fields.
* **Deletion:** Admins can delete function fields, which is useful to reuse their names on the same table.
* **Disabling creation:** A system property can be configured to prevent creation of function fields in Report Designer.

This functionality empowers ServiceNow customers to extend reporting capabilities with dynamic, calculated fields without modifying underlying data schema, improving analytical insights and report customization.  
While regular fields store a value in the database, a function field displays the results of a database query. The function field generates the value based on computations of other fields and constants. You can use these fields in reports and data visualizations as you would other fields.

The responsibility for creating, editing, and deactivating function fields belongs to the
user with the role function_field_admin. On upgrade, no user has this role. An admin must give
this role to a non-admin user. See [Create a role](https://www.servicenow.com/docs/access?context=t_CreateARole&version=australia&pubname=australia-platform-administration&ft:locale=en-US).

Learn about function fields here: [Function field](https://www.servicenow.com/docs/access?context=platform-support-functions&version=australia&pubname=australia-platform-administration&ft:locale=en-US).

You can use function fields in both Core UI and Platform Analytics experience, but you can only configure function fields in the Core UI Report Designer.

## Function field operations {#function-fields-reporting__section_nym_1f2_tmb}

Function fields can perform the following operations using the glidefunction:\<operation\> syntax.  
Note:  
Specify constants in single or double quotes. The examples for the concat(), dayofweek(), position(), and substring() operations show the use of constants in function fields.
{#function-fields-reporting__table_mdb_1zs_dbb__entry__3}{#function-fields-reporting__add-func-ex}{#function-fields-reporting__sub-func-ex}{#function-fields-reporting__mult-func-ex}{#function-fields-reporting__div-func-ex}{#function-fields-reporting__concat-func-ex}{#function-fields-reporting__datediff-func-ex}{#function-fields-reporting__dayofweek-func-ex}{#function-fields-reporting__length-func-ex}{#function-fields-reporting__coal-func-ex}{#function-fields-reporting__pos-func-ex}{#function-fields-reporting__subs-func-ex}

| Operation | Description | Example |
|-|-|-|
| add() | Takes two number fields as input, adds them, and returns the results as a field value. This function also takes numerical values for either input. Place numerical values in single or double quotation marks. | glidefunction:add(child_incidents, parent_incident) Returns 6 if the incident has five child incidents and one parent incident. Possible return types: Decimal, Floating Point Number, Large Whole Number, Whole Number |
| subtract() | Takes two number fields as input, subtracts the second from the first, and returns the result as a field value. This function also takes numerical values for either input. Place numerical values in single or double quotation marks. | glidefunction:subtract(u_num1, u_num2) Returns 2 if num1 = 8 and num_2 = 6. Possible return types: Decimal, Floating Point Number, Large Whole Number, Whole Number |
| multiply() | Takes two number fields as input, performs the multiplication, and returns the results as a field value. This function also takes numerical values for either input. Place numerical values in single or double quotation marks. | glidefunction:multiply(u_num1, u_num2) Returns 48 if num1 = 8 and num_2 = 6. Possible return types: Decimal, Floating Point Number, Large Whole Number, Whole Number |
| divide() | Takes two number fields as input, divides the first by the second, and returns the result as a field value. This function also takes numerical values for either input. Place numerical values in single or double quotation marks. | glidefunction:divide(u_num2,u_num1) Returns 5 if num2 = 10 and num1 = 2. Possible return types: Decimal, Floating Point Number, Large Whole Number, Whole Number |
| concat() | Takes any number of comma-separated fields and constants as input, concatenates the input, and returns a single string as a field value. | glidefunction:concat(incident_number, '/', short_description) Returns "INC0001 / My client needs a new laptop." if the value of the number field is 'INC0001' and the short_description is 'My client needs a new laptop'. Return type: Text |
| datediff() | Takes two date/time fields as input, calculates the difference between the dates in days, minutes, and seconds, and returns the results as a duration field value. | glidefunction:datediff(closed_at, sys_created_on) Returns the duration of an incident from the creation date to the close date. Example result: 10 days, 8 hours 23 minutes 11 seconds Return type: Duration |
| dayofweek() | Takes two arguments: A date field and a constant of either '1' (week starts on Sunday) or '2' (week starts on Monday). Returns the results as an integer value that represents the day of the week. The <kbd class="ph userinput">dayofweek()</kbd> function uses UTC dates, but adjusts comparison values based on the instance's time zone. | glidefunction:dayofweek(resolved_at, '1'). If resolved_at occurs on a Wednesday, returns 4 if the integer is 1 and returns 3 if the integer is 2. Return type: Whole number |
| length() | Takes a string field as input, calculates the field length in characters, and returns the results as a field value. | glidefunction:length(short_description) Returns 37 if short_description = "This application is performing a test". Return type: Whole number |
| coalesce() | Takes any number of comma-separated fields as input and returns the first non-empty value. | glidefunction:coalesce(closed_at, resolved_at, sys_updated_on) If the value of closed_at is empty, the function returns the value of resolved_at. If the value of resolved_at is also empty, the function returns the value of sys_updated_on. Return type: Text |
| position() | Takes two text fields or two text fields and a whole number as input. One or both of the text fields can also be strings. 1. Returns the position of the first occurrence of the string of the first text field in the second. 2. If a whole number is specified, this function returns the position of the second text field after the position of the whole number. {#function-fields-reporting__ol_gqd_rvh_2nb} Returns 0 if the first text field is not present in the second (after the position of the whole number if specified). | * glidefunction:position('e',short_description) If the value of the short_description field is "This computer is performing an upgrade", returns 12. * glidefunction:position('e',short_description,'14') If the value of the short_description field is "This computer is performing an upgrade", returns 19. {#function-fields-reporting__ol_kjd_2g5_dnb} Return type: Whole number |
| substring() | Takes a text field and two whole numbers as input. Returns the first instance of a string that starts at the position of the first whole number and is the length of the second. | glidefunction:substring(short_description, '7', '2') If the value of the short_description field is 'We're going to the store', returns 'go'. Return type: Text |
[Table 1. Function field operationsthe Function field operations table contains columns for the names of function field operations, a detailed description of what the operation does, and an example that includes both code and what the code returns.]

{#function-fields-reporting__table_mdb_1zs_dbb}
* **[Configuring function fields](https://www.servicenow.com/docs/qYpPmry8jc~O0OAfV3wWmA)**   
  You can configure up to 20 active function fields per table using the Report Designer. When you configure a function field on a table, you can group or stack by the results of the function calculation. Function fields that you create in Report Designer are available in Platform Analytics experience, but you cannot create them in Platform Analytics experience
* **[Create a function field](https://www.servicenow.com/docs/5169ZVoqe6XTDADlKy8J7g)**   
  Create a function field to be able to group and stack a report by the results of the field's calculation.
* **[Edit a function field](https://www.servicenow.com/docs/Ah~kz7gk6_wkWOOeMLQr8A)**   
  The user who created a function field or a user with the admin or function_field_admin role can edit the definition of a saved function field. It isn't possible to edit the label or the return type of a saved function field.
* **[Deactivate a function field](https://www.servicenow.com/docs/tt_MQMn2wBX2PS~oOJlRAA)**   
  The user who created a function field or a user with the admin role can deactivate it. If a table already has 20 function fields, you must deactivate one or more existing fields before creating another.
* **[Delete a function field](https://www.servicenow.com/docs/OzODVTZSOyjn8IGnuSRucA)**   
  A user with the admin role can delete a function field from its table. Deleting a function field is useful if you want to create a function field with the same name as one that exists on that table.
* **[Disable function field creation](https://www.servicenow.com/docs/uXvYiOw5ka127oEhoUcdJw)**   
  Configure a system property to remove the ability to create function fields in the Report Designer.

