2013-08-22 81 views
0

有這個DlookUp表達式的麻煩,它評估的第一個標準,但不是其他兩個,任何建議將是偉大的。訪問DLookUp多個條件

App_Ref是一個文本框, PRB RESPONSABLE是一個字符串, AppCostAdmend是一個字符串

=DLookUp("[Var_Amount]","Variations","[Var_AppRef] =[App_Ref]" And "[Var_Type] = 'AppCostAdmend'" And "[Var_Description] = 'PRB responsable'") 

回答

2

AND已成爲標準的一部分呢!它的工作方式類似於SELECT和WHERE ... AND ...!

所以:

=DLookUp("[Var_Amount]","Variations","[Var_AppRef] =[App_Ref] And [Var_Type] = 'AppCostAdmend' And [Var_Description] = 'PRB responsable'")