Switch To Product Links Languages Themes Feedback Sign Up Now
Loading...
Updating...
Please wait to edit...
Ready for editing X
Zoho CRM Formula Fields Refere... by zohocrm  401 views
Print Export Copy to My Account Embed in Website/Blog
$ Macros
 
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
FUNCTIONDESCRIPTIONARGUMENTSARGUMENT DATA TYPERETURN TYPEUSAGEEXAMPLE
Numeric Functions
IfReturns one of two values, depending on the
value of a given logical condition. If the boolean
test is true, If() returns the true value,
otherwise returns the false value.
3Boolean,Generic,GenericGenericIf(Boolean,Generic,
Generic)*
If(8>7,1,0) returns "1.0"
If(8>7,'True','False') returns "True"
AndReturns a true response if all expressions
are true; returns a false value even if one
of the expressions is false.
MultipleAll BooleanBooleanAnd(boolean,boolean ...)And(2>1,5>3,7<8) returns "True"
And(2>1,5>3,7>8) returns "False"
OrReturns true if any one expression is true.
Returns false if all expressions are false.
MultipleAll BooleanBooleanOr(boolean,...)Or(2>1,3>5,7>8) returns "True"
Or(1>2,3>5,7>8) returns "False"
NotReturns the logical negation of the given
expression (If the expression is true,
returns false).
1BooleanBooleanNot(boolean)Not(false) returns "True"
Not(true) returns "False"
* Generic implies any data type - Number, String, Datetime (including normal date) or Boolean. The return type depends on the selected data type.
For instance, if the generic data type is a number, the return type should be Numeric and not string or boolean.
Numeric
String
DateTime
Boolean
 
     
Processing...
Assign Macro Edit Label More