Does anyone know how to build a look up table, using the 1st list for keys and a 2nd list for values?
For instance:
- [“Start Date”, “Allergies”, “Allergy Details”]
- “02/01/2021”, ”Yes”, “No pork”]
The Zap should convert these lists to this lookup table, where I can look up key=“Allergies” and get output=“Yes”:
- Start Date: 02/01/2021
- Allergies: Yes
- Allergy Details: No pork