InterviewSolution
Saved Bookmarks
| 1. |
Give an example of how to use the LookUp() and Filter() function. What distinguishes it from Filter()? |
|
Answer» The LookUp() function LOCATES the first record in a database that meets a formula's requirements. LookUp() can be used to locate a single record that meets ONE or more criteria.
Example: LookUp(Cake, FLAVOUR = “Chocolate”, Quantity)
Example: Filter(cake, “chocolate” in LOWER(Flavour )); |
|