In formatting a report in Base, I want to concatenate two fields in a single space, provided that they both contain data, and I want to place them on separate lines. The point is that, if I define two report fields, one above the other, these will always occupy two lines in the report, since they do not shrink to zero height when empty.
I thought that it might be possible to place a formula in the single field something like this:
= [Field1] & (IF IsBLANK([Field2]);; CRLF & [Field2])
I have tried CHR(13) for this, but the formula does not seem to recognize the CHR function. Is there a way of doing this?