Google Sheets Integration - Pipe - Must have!

Hi @Sara

Currently the Google Sheet pipe is only able to add a row of values to the Sheet. I think the Google Sheet API can insert values in columns. Can we request for values to be added into a column?

Thanks a lot in advance.

1 Like

I tested the recent addition of values into a column, and I encountered an error.
First I added value to column C
Then I try to add values to column D, and I get this error. Seems like it is trying to compare with column C.
{
ā€œerrorā€: {
ā€œcodeā€: 400,
ā€œmessageā€: ā€œRequest range[Sheet1!D1] does not match valueā€™s range[Sheet1!C1]ā€,
ā€œstatusā€: ā€œINVALID_ARGUMENTā€
}
}

Another request is whether we can introduce a ā€œstartingā€ cell to add the values, whether it is for row or column. We donā€™t always want to start with Row 1 or Column A.

I was trying to update a row of values to A1:D1. But I get the following error. Seems like it was writing outside the range?

Update a row of values in a sheet
{
ā€œerrorā€: {
ā€œcodeā€: 400,
ā€œmessageā€: ā€œRequested writing within range [ā€˜Course Run 111ā€™!A1:D1], but tried writing to column [E]ā€,
ā€œstatusā€: ā€œINVALID_ARGUMENTā€
}
}