Is there anyway to calculate an exponent in a formula field?

Is there anyway to calculate an exponent in a formula field?

You can use the "power()" function to calculate an exponent in a formula field. For example,  to calculate simple interest with the following formula :  

(Principle  *  (1  +  0.08  /  365)  +  fee) ^ (Todaysdate - Issue_Date)

use the power() function as given below:

(Principle  *  (1  +  0.08  /  365)  +  fee).power(Todaysdate - Issue_Date))

    • Related Articles

    • Examples of Formula Field

      Formula Fields can be complicated sometimes. So, here are examples that will help you understand the usage of these types of fields in Zoho CRM. IF ELSE Statement Example: If field name contains 'Golf Only 1 Meal', then return 265 ; Else if field ...
    • Formula Field Examples

      Formula Fields can be complicated sometimes. So, here are examples that will help you understand the usage of these types of fields in Zoho Recruit. IF ELSE Statement Example: If field name contains 'Golf Only 1 Meal', then return 265 ; Else if field ...
    • Formula Field Functions

      Function performs a specific operation on values that you specify and generates a new value. To compose a function, you need to type the function name, followed by a set of parentheses(). The Zoho Recruit formula type custom field supports four ...
    • Formula custom fields

      A formula field will automatically calculate and derives its value by referring to the value of the specified fields or the numeric, text, or date values given in the formula. You can customize fields with formulas using functions like numeric, ...
    • Creating Formula Fields

      Formula fields are used to calculate different types of values, including numeric values, text values, date values, etc. Formula fields and their resulting return value have certain data types associated with them and there are specific operators ...