field on a report

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?
 
R

Rick Brandt

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
 
D

Douglas J. Steele

Have a single text box, and set its ControlSource to

=txtfield1 & " " & txtField2

(including the equal sign)
 
Top