I think I spotted what may be the issue:
Quote:
|
I have a "Properties" field which is a combo box whose dropdown displays 2 columns ("Property List", "Amount")
|
What you left out was that
there are three column but only two are displayed.
The row source of the combo box is set to:
Code:
SELECT [combo].[ID], combo.[Property], [combo].[Amount] FROM combo ORDER BY [Property];
Column(0): [combo].[ID]
Column(1): combo.[Property]
Column(2): [combo].[Amount]
*Note: The index started counting with 0 not 1.
The combo box has
three columns.
I would assume that the first column width is zero (0"). That is why you are only seeing two columns displayed.
The amount is the third column so you would need to use:
Code:
Me.Targeted = Me.Properties.Column(2)