- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-31-2020 03:36 AM
Hi,
What is the use of calculated value that is present in Dictionary Entry,Please tell me with some script
Thanks in advance
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-31-2020 05:18 AM
Simple algebric calculation is one of the parameters while choosing between BR and Function Fields. The function field will execute and calculate value but it doesn't store that value in the database so it means there is no history to be maintained. Its just a display value calculated and displayed every time a form/list loads.
On the other hand, Business rule calculates and stores the value into the database which means we would have a history of value changes and better performance as it doesn't calculate value unnecessary rather on when values updated only.
Take a look at Function Fields limitation section of the doc that has some good points that will help choose between function field and other alternatives.
Muhammad
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-31-2020 03:45 AM
Hey Vikram,
Calculated Value:
Determines whether the value of the field is calculated from other values. If selected, use the Calculation field to define how the calculation is performed. When sorting or grouping by a calculated field, the sort order is based on the field value from the last time the field was updated, not the last time the field was displayed.
Calculation [Advanced view]:
When the Calculated field is selected, allows you to enter a script for calculating the value of the field. These can be overridden for extended tables with dictionary overrides. You can use the current object in this script. As with access control rules, the script can:
- Evaluate to true or false.
- Return an answer variable set to true or false.
- Set a field value directly, such as:
current.display_name="name"
.
For more details refer the links:
Mark Correct and Helpful, if it helps!
Best Regards,
Namrata.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-31-2020 03:52 AM
Thanks for your valuable information could you also tell me the use of Function Field

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-31-2020 03:46 AM
That provides the ability to set the value of field based on some calculation or based on other fields value.
e.g you can set total sum of Field1 + Field2 to Field3 by using calculated value.
Please note, calculated value has adverse performance effect so we instead use client scripts or business rules as per the requirements.
Thanks & Regards,
Sharjeel
Muhammad
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-31-2020 03:53 AM
Thanks Muhammad for your response