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)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top