User Story
Adda checkbox formula field it's checked when the name of the Account contains DELETE
Expectation
Account Name: Delete me
Checkbox: True
Code
IF(CONTAINS(Name),"Delete"),True, False)
Explanation
This is a logical expression in a programming language or scripting syntax, likely checking the contents of a "Name" field.
The expression can be read as follows:
- If the "Name" field contains the specified string, the result of the expression is "Delete".
- If the "Name" field does not contain the specified string, the result of the expression is "True".
- If the result of the expression is not True, it is False.
Video
Video does not exists.