I’m having hard time grasping expressions with item lists. I’m sending 3 items to GSheets and trying to uptade 3 different sheets with range (sheetname!A1:G1) which name comes as input. But it only works with first item. Doesn’t update expression with each item. The things I tried :
{{$json["title"]}}!A1:G1
{{$item($position).$json["title"]}}!A1:G1
{{$item($runIndex).$json["title"]}}!A1:G1
{{$item($json["index"]).$json["title"]}}!A1:G1
{{$items()[$runIndex].json["title"] }}!A1:G1
{{$items()[$position].json["title"] }}!A1:G1
{{$items()[$json["index"]].json["title"] }}!A1:G1
Title property has same name as the sheet. It works for the first item.
[
{
"data": [
[
"Position",
"Type",
"URL",
"Domain",
"Title",
"Description",
""
]
],
"spreadsheetId": "hidden",
"sheetId": 1592557853,
"title": "şekerpare",
"index": 1,
"sheetType": "GRID",
"gridProperties": {
"rowCount": 1000,
"columnCount": 26
},
"tabColor": {
"red": 0.99607843,
"green": 0.33333334,
"blue": 0.33333334
},
"tabColorStyle": {
"rgbColor": {
"red": 0.99607843,
"green": 0.33333334,
"blue": 0.33333334
}
}
},
{
"data": [
[
"Position",
"Type",
"URL",
"Domain",
"Title",
"Description",
""
]
],
"spreadsheetId": "hidden",
"sheetId": 736830411,
"title": "õlireostus",
"index": 2,
"sheetType": "GRID",
"gridProperties": {
"rowCount": 1000,
"columnCount": 26
},
"tabColor": {
"red": 0.99607843,
"green": 0.33333334,
"blue": 0.33333334
},
"tabColorStyle": {
"rgbColor": {
"red": 0.99607843,
"green": 0.33333334,
"blue": 0.33333334
}
}
},
{
"data": [
[
"Position",
"Type",
"URL",
"Domain",
"Title",
"Description",
""
]
],
"spreadsheetId": "hidden",
"sheetId": 322588546,
"title": "πι",
"index": 3,
"sheetType": "GRID",
"gridProperties": {
"rowCount": 1000,
"columnCount": 26
},
"tabColor": {
"red": 0.99607843,
"green": 0.33333334,
"blue": 0.33333334
},
"tabColorStyle": {
"rgbColor": {
"red": 0.99607843,
"green": 0.33333334,
"blue": 0.33333334
}
}
}
]