I’m trying out the following formula:
from_dataset("People", "name", id: person_id)
I’m expecting the formula to return the name of a person from a People dataset. Instead I’m getting the following error in the generated data:
{"id":1,"person_id":1,"person_name":"Error evaluating from_dataset(\"People\", \"name\", \"{\"id\":1}\"): Illegal quoting in line 1."}
Below are my 2 schemas:
https://mockaroo.com/78d42cb0
https://mockaroo.com/ed74e050
What could be the problem?
I’ll like to use a formula data type + from_dataset
function over the Dataset Column data type because I’m planning to lookup fields from multiple datasets.