Help I've got a huge problem that I've been trying to figure out for weeks.
Let's say I have an expression like this in my report:
IIf(IsNull([AddressLine1] Or [AddressLine1] = " ", "", [AddressLine1] & vbCrLf) & IIf(IsNull([AddressLine2] Or [AddressLine2] = " ", "", [AddressLine2] & vbCrLf) & IIf(IsNull([AddressLine3] Or [AddressLine3] = " ", "", [AddressLine3])
How do I make the one field [AddressLine1] bold when it appears in the report without making the rest of the fields in the expression bold as well.
Let's say I have an expression like this in my report:
IIf(IsNull([AddressLine1] Or [AddressLine1] = " ", "", [AddressLine1] & vbCrLf) & IIf(IsNull([AddressLine2] Or [AddressLine2] = " ", "", [AddressLine2] & vbCrLf) & IIf(IsNull([AddressLine3] Or [AddressLine3] = " ", "", [AddressLine3])
How do I make the one field [AddressLine1] bold when it appears in the report without making the rest of the fields in the expression bold as well.