Adding TableRows in a google doc?

Hi !

I am trying to add a new row in this table from google docs.

I really tried my best to make this work but unfortunately I was only able to do it for the first cell of the newly added row, but not on the second.

If anyone has any idea on how to do this, I’d love a video that show how people do it.

I am essentially trying to add a few line items to the table.

Can you confirm if the first row was added using Make/integromat? If so, please share that information to provide more context.

2 Likes

Welcome to the Make community!

Could you please share screenshots of the module fields and/or filters in question? It would really help other community members to see what you’re looking at.

You can also export the blueprint file to allow others to replicate the issue. At the bottom of the scenario editor, you can click on the three dots to find the Export Blueprint menu item.

Screenshot_2023-08-24_230826

Uploading it here will look like this:

blueprint.json (119.3 KB)

2 Likes

Hi!

Everything is added via integromat.

It’s essentially a template that has a table in in it. Here is the blue print:

blueprint (1).json.json (26.2 KB)

Here is also a video:

Quick Question?

Hello check this part:

“rowIndex”: 1,
“columnIndex”: 0

Maybe you need to add information for more cells in the row, there seems to be only adding to the “columnIndex”: 0

try playing changing numbers in this JSON key:

check this:

{
“requests”: [
{
“insertTableRow”: {
“tableCellLocation”: {
“tableStartLocation”: {
“index”: 5
},
“rowIndex”: 1,
“columnIndex”: 0
},
“insertBelow”: true
}
},
{
“insertText”: {
“location”: {
“index”: 202
},
“text”: “{{7.array[0].Denumire Produs}}”
}
},
{
“insertTableRow”: {
“tableCellLocation”: {
“tableStartLocation”: {
“index”: 5
},
“rowIndex”: 2,
“columnIndex”: 0
},
“insertBelow”: true
}
},
{
“insertText”: {
“location”: {
“index”: 202
},
“text”: “{{7.array[1].Denumire Produs}}”
}
},
{
“insertTableRow”: {
“tableCellLocation”: {
“tableStartLocation”: {
“index”: 5
},
“rowIndex”: 3,
“columnIndex”: 0
},
“insertBelow”: true
}
},
{
“insertText”: {
“location”: {
“index”: 202
},
“text”: “{{7.array[2].Denumire Produs}}”
}
}
]
}

1 Like

Hi!

thanks!

I’ve done this. Nothing really worked really.

Ended up using a different software to achieve this.