24-05-25 01:43 PM
I have a collection that consists of menu items and prices and I have another collection that contains different image url of the menu items and prices , how do I merge the collection together where the image url goes to its respective menu items and note using merge collection make the menu items and url align.
25-05-25 07:19 AM
Hi @girabor You need to follow below steps
a) Verify both collections have a common key (like menu item name or ID)
b) Use a loop to match items from both collection.
c) Create a new merged collection with all required fields
i) Create a new collection with below columns
Menu Item
Price
Image URL
ii ) Add a Loop stage to process one of your collections.
iii) Inside the loop, use filter to locate the matching item in the other collection.
iv) Add the combined data to your new collection.
If I've successfully answered your question, please mark this response as the "Best Answer" to help others find the solution quickly.