RTF condition IF ENDIF
I would like to dynamically change the value for field 'Description_ID2'. The criteria I would like on the output is the following:
If Description_ID2='Invalid Account.' then I would like to print following message 'Error: AAI not found for <?GlClass_ID63?>'
If the column Description_ID2 contains blank values, then the report should contain the blank values for this column. However, if the column Description_ID2 contains some other non-blank value, then display the value 'Error:' + Description_ID2
I tried the following, and it worked correctly only if the first criteria is met.
If Description_ID2='Invalid Account.' then I would like to print following message 'Error: AAI not found for <?GlClass_ID63?>'
If the column Description_ID2 contains blank values, then the report should contain the blank values for this column. However, if the column Description_ID2 contains some other non-blank value, then display the value 'Error:' + Description_ID2
I tried the following, and it worked correctly only if the first criteria is met.
<?if:Description_ID2='Invalid account.'?>
0