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.
 
Top