Combine a label and data field w/o spaces in between them

  • Thread starter Thread starter Stephen
  • Start date Start date
S

Stephen

Hi


I have a report with a label a data field and another label.

I need the report to print the label and data field and the other label
without any spaces between them. The data field's length changes as well
depending on the record.

What can I do to not have spaces between them?

Thanks
 
Make a new text box control, enter this into it:

="This is my first label "&[Control Name]&" Second Label"
 
Back
Top