We can get a value from a table with this method:
abc =10
getResult = DLookup("[name]", "[Table1]", "[age]='" & abc & "'")
What if the resultant values are more than one. How would i retreive those?
When age = 10 , i need to look for all the names with thier age=10. But with above method i get only one name (value) returned.
Any idea how to get the other values as well?