Set ClickUp Label custom field from Text Parser with multiple values

:bullseye: What is your goal?

I need to set ClickUp Label custom fields from a Text Parser value.

:thinking: What is the problem & what have you tried?

This is my scenario. When there is only one value, it updates correctly. However, when there are multiple values (as shown in the screenshot), not all values are set in the ClickUp label field.

Please note: All label options are already created in ClickUp, I am not creating new labels, and I need all (multiple values) to be updated in ClickUp as returned by the Text Parser

Has anyone successfully handled updating a ClickUp Label field from multiple parsed text values in Make? Any guidance would be appreciated.

:camera_with_flash: Screenshots (scenario flow, module settings, errors)

1 Like

Hi, welcome to the community

This usually happens because ClickUp Label fields expect an array of label names, not a single text value. When your Text Parser returns multiple values, they need to be split and sent as an array, otherwise ClickUp will only apply one of them.

After the Text Parser, just make sure you’re turning the output into an array (for example, using split() if the values are comma-separated). An Array Aggregator works too, as long as the final result is an array of plain text values that exactly match the existing labels in ClickUp.

Since the labels already exist, once the format is right, ClickUp should apply all of them without issues.

Hope that helps.

Regards, Tony