AND Function: Difference between revisions
No edit summary |
No edit summary |
||
Line 35: | Line 35: | ||
<span style="color:red">&& </span><span style="color:blue"><nowiki>{{Task.Select a predefined answer}}</nowiki></span>="Calculation.Legal Entity ."<br> | <span style="color:red">&& </span><span style="color:blue"><nowiki>{{Task.Select a predefined answer}}</nowiki></span>="Calculation.Legal Entity ."<br> | ||
)$%%<br> | )$%%<br> | ||
Invalid field value "Select a predefined answer" for the customer type "Physical person" | Invalid field value "Select a predefined answer" for the customer type "Physical person" | ||
%%$<span style="color:green">ENDBLOCK</span>$%% | %%$<span style="color:green">ENDBLOCK</span>$%% | ||
'''The construction must be added in one line without spaces and line breaks:''' | '''The construction must be added in one line without spaces and line breaks:''' | ||
<nowiki>%%$IF({{Task."Disable field 07. Notification"}}=0&&{{Task.Application through the form}}=1&&{{Task.Who are you?}}="Physical person"&&{{Task.Select a predefined answer}}="Calculation.Legal Entity | <nowiki>%%$IF({{Task."Disable field 07. Notification"}}=0&&{{Task.Application through the form}}=1&&{{Task.Who are you?}}="Physical person"&&{{Task.Select a predefined answer}}="Calculation.Legal Entity")$%%Invalid field value "Select a predefined answer" for the customer type "Physical person"<br> | ||
%%$<span style="color:green">ENDBLOCK</span>$%% | %%$<span style="color:green">ENDBLOCK</span>$%% | ||
Revision as of 12:18, 29 March 2024
This function returns the Boolean value "true" if both conditions are true. It is usually used in conjunction with the IF Function.
Format
- AND(condition1;condition2)
where:
- condition1 / condition2 - logical expressions using >, <, =, >=, <=, !=, other functions, report column values or fields
Examples № 1
Important
- The condition can be an arithmetic expression. If the result of this expression is a non-zero number, the condition is considered fulfilled. If the result of the expression is zero, the condition is not fulfilled.
- When checking values in custom checkbox fields, you should use 1 and 0 in reports and Yes / No in data tag calculated fields
- Function works only with two arguments.
Alternative use
In formulas, it is represented by two consecutive ampersand symbols — &&'
Example № 2
%%$ЕСЛИ(
{{Task.Notification}}=0
&& {{Task.Application through the form}}=1
&& {{Task.Who are you?}}="Physical person"
&& {{Task.Select a predefined answer}}="Calculation.Legal Entity ."
)$%%
Invalid field value "Select a predefined answer" for the customer type "Physical person"
%%$ENDBLOCK$%%
The construction must be added in one line without spaces and line breaks:
<nowiki>%%$IF(Template:Task."Disable field 07. Notification"=0&&Template:Task.Application through the form=1&&Template:Task.Who are you?="Physical person"&&Template:Task.Select a predefined answer="Calculation.Legal Entity")$%%Invalid field value "Select a predefined answer" for the customer type "Physical person"
%%$ENDBLOCK$%%