S
Stu W
I'm wanting to insert a carriage return into a report text box that is a
concatentination of two different DB fields. I've tried to set the following
as the data source for the text box:
="Description: " & [projDescription] & chr(13) & chr(13) & "Status: " &
[statStatus]
I think you get the idea. But the carriage returns (chr(13)) don't get
processed as carriage returns.
The reason I am wanting to do this is to prefix each field with an
appropriate label ("Description: " and "Status: ") and to have the statStatus
label and contents appear directly after the projDescription label and
contents. I've tried stacking the fields one on top of the other in the
report design, and setting all to be able to grow and shrink, but there are
other fields to the left and right of these, and their position gets adjusted
by the length of the contents of these fields, which is undesirable.
Any suggestions welcomed.
concatentination of two different DB fields. I've tried to set the following
as the data source for the text box:
="Description: " & [projDescription] & chr(13) & chr(13) & "Status: " &
[statStatus]
I think you get the idea. But the carriage returns (chr(13)) don't get
processed as carriage returns.
The reason I am wanting to do this is to prefix each field with an
appropriate label ("Description: " and "Status: ") and to have the statStatus
label and contents appear directly after the projDescription label and
contents. I've tried stacking the fields one on top of the other in the
report design, and setting all to be able to grow and shrink, but there are
other fields to the left and right of these, and their position gets adjusted
by the length of the contents of these fields, which is undesirable.
Any suggestions welcomed.