Empty Output

I’m a newbie with make.com trying to build something from scratch,
What i have atm is I get stuck with mapping or formatting the value of dates output by array aggregator where bookedslots = {{map(21.array; formatDate(parseDate(21.array.6; “MM-DD-YYYY h:mm A”); “h:mm A”))}}

I tested it by removing the map() and it only gives me the first output which is 10:00 AM , wherein I need all outputs as bookedslots.
TIA!

Hi @office_design,

It looks like your map() function is not having the right parameters.

And here is a great course to learn more about it: https://academy.make.com/courses/IntermediateC02

In that example, should you need to retrieve an ARRAY containing only the “Response ID”, you would then use the map() function like this:

map({{your_array}};responseid)

(see the difference between the “raw name” that you need to type in (responseid) compared to the name of the field '(“Response ID”)).

@PierreL Thanks , ill try to play with it.