Hi
I am trying to figure out how I can GET the Name-field in a document in firebase, using the document.id and matching to an ID of the repeat list.
My collection look like this:
producer:
producerName = “XX”
id = “XX&&XX&&XX&&”
product:
producerId = “XX&&XX&&XX&&”
I have set up two Data Variables for the product and the producers. I can see I fetch the producers list correctly to the page, and I then want to match up the corresponding ID to the repeatable post.
Repeating product on page and trying to find the producerName and displaying in repeatable list, and the following formula works, but does not expand further than the first post, IE, its not repeating.
STRING(LOOKUP(FIND(data.producers1, item.id==repeated.current.producerId), “producerName”))
Any pointers as to how I can get the producersName to be added as repeating names for each product?