Hi i need to modify entry print on report and add a new row only if the comment on entry have a length minor than 21, what im doing wrong, here is the condition on xml report.
<IF>
<CONDITION> Len(Entry.Comment) <= 20 </CONDITION>
<THEN>
<ROW> Entry.Comment </ROW>
</THEN>
</IF>
I try this too.
<IF>
<CONDITION> Len(Entry.Comment) < 20 </CONDITION>
<THEN>
<ROW> Entry.Comment </ROW>
</THEN>
</IF>
*This post is locked for comments