WorkSmart Platform
HomeSign In
  • Low code, Unified Platform
  • Custom Database Apps
    • Create new App
    • Columns
      • Column Types
        • Text
        • Multi-Line
        • Number
        • Auto Number
        • Currency
        • Date/Time
        • TimeInput
        • Duration
        • Yes/No
        • Choice – Drop Down, Radio Button, and Check Box
        • Email Address
        • Phone/Fax No.
        • URL
        • Relationship
        • E-Signature
        • Formula
      • Adding a New Column
      • Modifying Existing Column
      • Removing a Column
    • Views
      • Adding a View
      • Adding a Chart View
      • Adding a New Summary View
      • Editing a View
      • Deleting a View
      • View Settings
        • Setting default view
        • Re-ordering view sequence
        • Making view active/inactive
    • Forms
      • Adding a New Form
      • Editing a Form
      • Deleting a Form
    • Plug-ins
    • Relationships
      • Lookup
        • Adding a New Lookup Field
        • Editing a Lookup Field
        • Deleting a Lookup Field
      • Summary
        • Adding a New Summary Field
        • Editing a Summary Field
        • Deleting a Summary Field
    • User Permissions
      • Levels of Access Controls
      • Sharing an App
      • Sharing a Record
    • Notification Settings
      • Adding a new Email Template
      • Editing a Email Template
      • Deleting a Email Template
      • Turning a Email Notification as On/Off
    • Automation Rules
      • Adding a new Rule
      • Edit a Rule
      • Deleting a Rule
      • Custom Action Rules
        • Overview
        • Rule Conditions
        • Rule Actions
      • User Based Rules
        • Rule Conditions
        • Rule Actions
      • Record Based Rules
        • Rule Conditions
        • Rule Actions
      • Time Based Rules
        • Rule Actions
        • Rule Conditions
      • Periodic Rules
        • Rule Conditions
        • Rule Actions
      • Rule Actions
        • Hide Form Tabs
        • Update Record
        • Add Record
        • Column Control
        • Apply Approval
        • Add Subform Record
        • Email Alert
        • Delete Connected Records
        • Navigate To
      • Conditional Formatting
      • Operator Precedence
    • Workflow Process
    • Modifying Database App Details
    • Save As Template
    • Transferring Ownership of Database App
    • Exporting Data
      • Excel
      • PDF
    • Delete a Database App
    • Formula Functions
      • Formula Funtions
      • Text Functions
      • Number Functions
      • Date Functions
      • Formatting Functions
      • Aggregate Functions
      • Database Functions
  • Ready to Use Apps
    • Files Manager
      • Working with Folders
        • Adding a Folder
        • Adding a Sub-Folder
        • Downloading a Folder
        • Renaming a Folder
        • Moving a Folder
        • Sharing a Folder
        • Managing Folder Properties
        • Setting-up Approval Process on a Folder
          • Approval Settings
          • Defining a Approval Process
          • Modifying Approval Process
          • Deleting Approval Process
        • Deleting a Folder
        • Sequencing Sub-Folders
      • Working with Files
        • Adding Files
        • Adding a New File
        • Viewing File Details
        • Downloading a File
        • Viewing Files Revisions
        • Adding a New Version to a File
        • Locking a File
        • Unlocking a File
        • Sharing a Record
        • Adding a Comment to a File
        • Copying/Moving a File
        • Setting-up Approval Process on a File
          • Approval Settings
          • Defining a Approval Process
          • Modifying Approval Process
          • Deleting Approval Process
        • Approving a File
        • Deleting a File
    • Kanban WorkFlows
      • Installing Tasks Manager
      • Adding a Task
      • Viewing a Task
      • Editing a Task
      • Sharing a Tasks Manager
      • Sharing a Task
      • Completing a Task
      • Undoing the completion of a Task
      • Deleting a Task
    • Spreadsheet To Smart Apps
  • FAQ
    • Update User Profile
    • Lost Access
    • Two Factor Authentication
      • Authenticator App Setup
      • Security Key Setup
      • Change Primary Channel
  • Additional Features
    • Reports Management
    • Smart Dashboards
  • Portal Management
    • Address Book
      • Working with Address Book
    • Portal Administration
      • Workspace Branding
        • Change Logo
        • Remove Logo
        • Change Workspace Details
      • Data Retention Policy
      • Theme Selection
      • Notifications Settings
      • Security
        • Password Settings
        • Security Policy
        • Two Factor Authentication
          • Setup as Optional
          • Setup as Mandatory
      • Time/Date Settings
      • Monitoring
        • Activity Log
        • Site Log
      • Special Privileges
      • Templates
        • Global Catalogue
        • Local Catalogue
    • Sites Management
      • Working with Sites
      • Site Members
        • Adding Individual Members
        • Removing Members
        • Managing Workgroups
          • Adding Work Group
          • Editing a Work Group
          • Deleting Work Group
          • Adding members to a Work Group
        • Contact Groups
          • Adding a Contact Group
          • Removing a Contact Group
        • Site-Specific Special Privileges
        • Visibility Settings
      • Managing Sites
        • Creating a New Site
        • Editing a Site
        • Making a Site Active
        • Archiving a Site
        • Deleting a Site
        • Customising Site Dashboard
        • Exporting Site as Template
        • Site Quota Settings
        • Notification Settings
      • Site Categories
        • Adding a New Site Category
        • To Edit a Site Category
        • Deleting a Site Category
        • Re-ordering Site Categories
      • Site Statuses
        • Adding a New Site Status
        • Editing a Site Status
        • Deleting a Site Status
        • Re-ordering Site Statuses
    • Billing and Payment
      • Setup Payment - Direct Debit
      • Setup Payment - Card (Debit/Credit)
      • Invoices
Powered by GitBook
On this page

Was this helpful?

  1. Custom Database Apps
  2. Formula Functions

Number Functions

Name

Category

Arguments

Result

Description

Example

Abs

Number Functions

NUMBER N

NUMBER

Returns the absolute value of number N

Abs(-4.2) will return 4.2 Abs(5) will return 5

ATan

Number Functions

NUMBER N

NUMBER

Returns the arc tangent of number N in radians. ATan() is the complementary function of Tan(), which means that a == Tan(ATan(a)) for every value of a that is within ATan()’s range.

ATan(50) will return 1.5507989928217

Ceil

Number Functions

NUMBER N

NUMBER

Returns the next highest integer value by rounding up value if necessary.

Ceil(5.2) will return 6 Ceil(2.4) will return 3

Cos

Number Functions

NUMBER N

NUMBER

Returns the cosine of the number N. The number N is in radians.

Cos(50) will return 0.96496602849211

Cosh

Number Functions

NUMBER N

NUMBER

Returns the hyperbolic cosine of number N, defined as (Exp(N) + Exp(-N))/2.

Cosh(2) will return 3.7621956910836

CoTan

Number Functions

NUMBER N

NUMBER

Returns the cotangent of number N, defined as 1/Tan(N). The number N is in radians.

CoTan(2) will return -0.45765755436029

Exp

Number Functions

NUMBER N

NUMBER

Returns e raised to the power of number N. ‘e’ is the base of the natural system of logarithms, or approximately 2.718282.

Exp(2) will return 7.3890560989307

Floor

Number Functions

NUMBER N

NUMBER

Returns the next lowest integer value (as float) by rounding down value if necessary.

Floor(5.2) will return 4

Floor(2.4) will return 2

Ln

Number Functions

NUMBER N

NUMBER

Returns natural log of the number N

Log10

Number Functions

NUMBER N

NUMBER

Returns the base-10 logarithm of number N

Logn

Number Functions

NUMBER base, NUMBER N

NUMBER

Returns the log base of number N

Logn(10, 100) return 2

Pow

Number Functions

NUMBER base, NUMBER exp

NUMBER

The Power function raises Base to any power. For fractional exponents or exponents greater than MaxInt, Base must be greater than 0.

Pow(2, 5) return 32 Pow(4.1, 3) return 68.921

Rnd

Number Functions

NUMBER

Generates a random number (float value) between 0 and 1.

Sign

Number Functions

NUMBER N

NUMBER

Returns the signed value of number N

Sign(X) returns -1 if X < 0, +1 if X > 0, 0 if X=0. It can be used as Sqr(X)

Sin

Number Functions

NUMBER N

NUMBER

Returns the sine of the number N. The number N is in radians.

Sin(50) will return -0.26237485370393

Sinh

Number Functions

NUMBER N

NUMBER

Returns the hyperbolic sine of number N, defined as (exp(N) – exp(-N))/2.

Sinh(2) will return 3.626860407847

Sqr

Number Functions

NUMBER N

NUMBER

Returns the square of argument.

Sqr(“7”) will return 49

Sqrt

Number Functions

NUMBER N

NUMBER

Returns the square root of number N

Sqrt(“49”) will return 3

Tan

Number Functions

NUMBER N

NUMBER

Returns the tangent of the number N. The number N is in radians.

Tan(2) will return -2.1850398632615

Trunc

Number Functions

NUMBER N

NUMBER

Discards the fractional part of a number N

TRUNC(-3.2) will return -3 TRUNC(3.2) will return 3

Val

Number Functions

TEXT argument

NUMBER

Returns the floating point numeric value of the text value.

Val(“3.1”) return 3.1

PreviousText FunctionsNextDate Functions

Last updated 4 years ago

Was this helpful?