首先进行表设置:
ID (AI)
Question (Text)
Type (INT)
我已经有一个可以正常运行的查询,如下所示:
Q2 = DLookup("[Question]", "tblQuestions", "[ID] = 2")
现在,我想按照手册中的描述为该搜索查询调整第二个条件:
Q2 = DLookup("[Question]", "tblQuestions", "[ID] = 2 AND [Type] = " & Me.Typefield)
(我尝试了Me.Typefield以及Me.Typefield.Value)
我在做什么错了?
BR