If then else clauses are often used for input filtering for our analysis in AF. We often face the issue that analysis cause errors although the part which should not be executed according to the condition is causing errors.
Example:
"if BadVal('attribute') then '' else TagEU('attribute')" is giving still errros when the attribute is excluded.
It also doesn't matter what order you your check it, it still doesn't work. For example, the below both fail
If '..\|NumberOfCommunications' < 2 Then "N/A" Else '..\COM2|State'
If '..\|NumberOfCommunications' = 2 Then '..\COM2|State' Else "N/A"