I am building a scenario to integrate service order data from Google Sheets into ClickUp.
My goal is to create a new ClickUp task when a customer submits an order. The scenario is triggered by a new row in my “Orders” sheet (one row per order) and then uses the “Search Rows” module to find all the related line items from my “Order Items” sheet (which can have several rows per order).
This part works, and I’m successfully using the Array Aggregator to gather all the found items into a single array.
My problem is formatting this array into the ClickUp task description. When I map the array output directly to the task’s content field, the information appears as a raw, unformatted string, like this:
{"1":"Coroa em PMMA Fresada provisória CADCAM","2":11.12,"3":2}, {"1":"Coroa em Zircônia sobre implante CADCAM","2":13.14,"3":1}, ...
I want to organize this information into a clean Markdown table, with a separate row for each item. I have tried several things, like using the map() function, but nothing has worked so far.
Could anyone help me find the correct syntax or approach to transform this array of objects into a formatted Markdown table within the ClickUp module?
So, my question is: What is the best formula or method in Make.com to map the input array from Step 1 into the formatted Markdown table shown in Step 2?