Function
Introduction
This document outlines the integration between Autom Mate and the Function Feature, explaining how Autom Mate enhances functionality through predefined functions.
The collaboration between Automate and the Function Feature enables users to leverage predefined functions seamlessly, enhancing workflow capabilities and productivity.
What is the Function Feature?
Overview of the Function Feature: The Function Feature provides users with a library of predefined functions that can be easily integrated into actions within Automate.
Autom Mate Integration with the Function Feature
Overview of Integration: Autom Mate seamlessly integrates with the Function Feature, allowing users to incorporate predefined functions into their workflow actions.
Examples of Automated Tasks:
Utilizing predefined functions for data manipulation
Implementing conditional logic using predefined functions
How To Use Feature
The Function Feature allows users to leverage predefined functions within their workflow actions. This action facilitates enhanced functionality and automation capabilities within Automate workflows.
Usage
Navigate to the Message or Command Space
Go to the message or command area within the action control center.
Write 'fn.'
Type "fn." to open the list of predefined functions.
Select a Function
Choose the required function from the dropdown menu that appears.
Usage of Each Functions
This guide explains functions that will help you perform various data manipulation operations. Each function performs a specific task and facilitates your data processing workflow.
Functions are crucial building blocks that contribute to making your data modular and comprehensible. A function is an independent and reusable code block that accomplishes a specific task. This block is grouped under a name and, when called, executes a particular operation.
Functions properties can be used in all input fields within Autom Mate.
Data Manipulation Functions
In this section, you will find functions used to perform various manipulation operations on text data. These functions assist you in editing, transforming, and checking your text data
UpperCase
This function is used to convert a text entirely into uppercase. You can use the function as follows:
LowerCase
This function is used to convert a text entirely into lowercase. You can use the function as follows:
Capitalize
This function is used to capitalize the first letter of a text. You can use the function as follows:
Replace
This function is used to replace a specific character or string of characters in a text with another character or string. You can use the function as follows:
Contains
This function is used to check whether a text contains a specific character or string of characters. For example, if "text" contains the target_str, it returns "True"; otherwise, it returns "False." You can use the function as follows:
RemoveHTML
This function is used to remove HTML tags from a text. For example:
Math Functions
Mathematical functions are specialized functions that enable you to easily perform various mathematical calculations. These functions encompass a wide range of mathematical operations, such as performing basic mathematical operations on numbers.
Sum
This function is used for basic addition, performing mathematical calculations. You can use the function as follows:
Difference
This function is utilized to calculate the difference between two numbers. You can use the function as follows:
Multiply
This function is employed for multiplying two numbers. You can use the function as follows:
Divide
This function is used to divide one number by another. You can use the function as follows:
Ceil
This function rounds the input number to the next greater integer or float. You can specify the precision of the decimal digits. You can use the function as follows:
Average
This function takes the average of the entered numbers. You can specify the precision of the decimal digits. You can use the function as follows:
Mod
This function divides left hand operand by right hand operand and returns the remainder. You can use the function as follows:
Power of
This function takes two operands: the left-hand operand is the base, and the right-hand operand is the exponent. It multiplies the base by itself as many times as indicated by the exponent and returns the result of that operation. You can use the function as follows:
Absolute
This function returns the absolute (positive) value of a number. You can use the function as follows:
Round
This function returns a value with a specified number of decimal places. Function rounds off a numerical value. You can use the function as follows:
Is Even
This function checks the integer input and returns true if it is an even number. You can use the function as follows:
Is Odd
This function checks the integer input and returns true if it is an odd number. You can use the function as follows:
Floor
This function rounds the input number to the next smaller integer or float. You can specify the precision of the decimal digits. You can use the function as follows:
To Float
This function converts data to a float (number) type. You can use the function as follows:
To Integer
This function converts data to an integer type. You can use the function as follows:
To String
This function converts data to a string (text) type. You can use the function as follows:
Default type is empty. There are only 2 types “short” and “long” related with the date format data.
To Currency
This function formats int/number to a currency-style. You can use the function as follows:
To Phone
This function converts string or number to a formatted phone number (user-defined). You can use the function as follows:
Last updated