I need a little of help please:
In a report I use the Dlookup function matching 1 argument (and it works well):
=DLookUp("VALUE2RETURN","SOURCE","MATCH = " & Nz([MATCH],0))
Now, I need to retrieve a single value, matching 3 different columns (like a multiple Vlookup in Excel)
So, the code so far, goes like this (trying to match 2 criteria):
=DLookUp("VALUE2RETURN","SOURCE","MATCH1 = " & Nz([MATCH2],0) And "VALUE2RETURN", "SOURCE", "MATCH2 = " & Nz([MATCH2],0))
But is doesn't work...in excel is easier, because you can create a column with "&" and use vlookup then.
Your help would be much appreciated!