Code:
SELECT
[TABLE NAME].[FILE TYPE]
FROM
[TABLE NAME]
WHERE
(
FORMS![FORM NAME].[cboReportName].Column(3)="Report"
)
This is basically what my rowsource of a combo box looks like. When I use it, I get the "undefined function" error. Basically this is because the querybuilder does not recognize Column as a function.
Is there any way I could get this to work in QueryBuilder. Please realize I know that I could do this in VBA, it's just that I'd like it to work in the QueryBuilder.
Thank you, Modest