Hello Alteryx Community,
My current output is looking like this in JSON format as shown below:
Current Output 1
"Name": "AAA","BBB","CCC"
Current Output 2
"Name":""
Current Output 3
"Name":"HHH"
The expected output should be like as shown below:
Expected Output1
"Name": ["AAA","BBB","CCC"]
Expected Output2
"Name": [""]
Expected Output3
"Name": ["HHH"]
Thank you!