I'm fairly new to Access, but have most of the basics down because I've used Excel for years. I'm trying to do a DLookup on a table. It's a really large table.
My DLookup is returning blank. It's not giving me an error message or returning "null." It's just blank. I'm searching a text field to return a numerical value. I'm using this below:
Results: DLookUp("[Meas]","[Database]","[Description]='" & [Description] & "'")
The table looks similiar to below:
Description Weight(g) Measure Protein(g)Per Measure Cholesterol(mg)Per Measure
Butter, salted 5 1.0 pat (1" sq, 1/3" high) 0.04 11
Butter, whipped, with salt 3.8 1.0 pat (1" sq, 1/3" high) 0.03 8
Butter oil, anhydrous 12.8 1.0 tbsp 0.04 33
Cheese, blue 28.35 1.0 oz 6.07 21
Cheese, brick 132 1.0 cup, diced 30.68 124
Cheese, brie 28.35 1.0 oz 5.88 28
Any idea what could be causing this? Or do I need to try to put this in VBA?
Descriptioncoming from and what does it contain? - Andy G