Hi @Kapoor, Aastha (NBCUniversal)
Looks like either your json might have double quotes in the value of json field or you are using concat as I can see in the Value of Tile Name and Episode Name.
[
{
'city': 'myCity',
'name': '"fName, mName lName"'
}
]
concat('"',item()['Title Name'],'"')
concat('"',item()['Episode Number'],'"')
The parser will add the double quotes if there are special characters ',' in any of the values. You don't have to use concat.
Input:
[
{
'city': 'myCity',
'name': '"fName, mName lName"'
}
]
Output:
city,name
myCity,"fName, mName lName"