Functions & Operators Flashcards
(5 cards)
1
Q
AND()
A
AND Function or && Operator;
Takes at least two arguments and returns true only if all arguments are true.
2
Q
OR()
A
OR Function or | | Operator;
Takes at least two arguments and returns true if at least one argument is true, and returns false if all arguments are false
3
Q
NOT()
A
NOT Function or ! Operator;
Returns False for True and True for False
4
Q
IF()
A
IF Function takes 3 arguments in the format (test, result, alternate)
Define what to test, define the outcome for true, else false.
5
Q
TEXT()
A
Converts a Percent, Number, Date, Date/Time, picklist, or Currency field into Text without any signs (30% will be 0.3)