field on a report

  • Thread starter Thread starter Francisco Capellan
  • Start date Start date
F

Francisco Capellan

when you are creating a report and you want to print 2 dif var like
This is only a test "txtfield1" "txtfield2"
they will print the length complete of the field and the second one start
after that
I want to print the second one inmediatly after the first one end
how can i do that?
 
Francisco said:
when you are creating a report and you want to print 2 dif var like
This is only a test "txtfield1" "txtfield2"
they will print the length complete of the field and the second one
start after that
I want to print the second one inmediatly after the first one end
how can i do that?

Use a ControlSource in a single TextBox of...

= field1 & field2
 
Have a single text box, and set its ControlSource to

=txtfield1 & " " & txtField2

(including the equal sign)
 
Back
Top