FYI: I figured out how to get each text, but I’m sure there’s a better way by setting the collection item to the profile object and then referencing various texts to this object.
Not seeing the data structure but making some assumptions, switch to the javascript formula and try something along the lines of this…
// Access the global variable containing the data Family
const items = collections['your-collection-id...de439c6947c9']
// Filter the items based on the 'family_member.id' property
const filteredItems = items.filter(item => {
return item.family_member.id === user_id;
});
// Return the filtered items
return filteredItems;