Concatenating Text Boxes

L

ltdexp

I am trying to concatenate an unbound text box in a report that is based on a
combo box. IE: ="Please transfer from " & [loan number] & "to checking
account... " where [loan number] is a combo box and returns a number instead
of text.
Thanks
 
B

BruceM

You can reference a combo box column other than the bound column with the
syntax:
{ComboBoxName}.Column(1)
Column numbering is zero-based, so (1) is the second column in the combo box
Row Source.

If this does not answer the question you will need to provide more details
about what you are doing and the expected end result.
 

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

Top