ACC: "#NAME?" Error Referring to Combo Box Column in SubformLast reviewed: May 12, 1997Article ID: Q103129 |
The information in this article applies to:
SYMPTOMSYou can refer to a particular column of a combo box in a text box on a form using the .Column property as follows:
=Forms![Formname]![ControlName].Column(x).However, if the combo box is on a subform, the text box returns the message:
#Name? RESOLUTIONTo work around this behavior, you can refer to the column of the combo box that is on the subform through the main form, even though the text box is actually on the subform. For a subform with a combo box and a text box, the following syntax returns the correct result:
=Forms![MainForm]![Subform].Form![Controlname].Column(x)NOTE: Columns are numbered starting with 0, not with 1. For more information about errors you my receive when you reference the Column property of a combo box in Microsoft Access version 1.1, please see the following article in the Microsoft Knowledge Base:
ARTICLE-ID: Q103999 TITLE : ACC1x: GP Fault Referencing Column Property of Combo Box |
Additional query words: poundname
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |