-
Trying to save data {activeTabUrl} to a google sheet., No matter how tried to format it, the process produces an error when it comes to that stage. Tried several formats:
What am I doing wrong? I know the connection to the sheet is ok because 1) I get data from that sheet 2) when I use the "data from - Data Columns" option - it works OK. |
Beta Was this translation helpful? Give feedback.
Replies: 4 comments 1 reply
-
Try |
Beta Was this translation helpful? Give feedback.
-
Hi |
Beta Was this translation helpful? Give feedback.
-
Automa sending the right payload (first image), and I think the error is on the range that you inputted (second image) when trying to update the spreadsheet cells. Because with [ ["URL"], ["URL","{{activeTabUrl}}"] ] There're two ways you can fix this, first by changing the range from [ ["URL"], ["{{activeTabUrl}}"] ] |
Beta Was this translation helpful? Give feedback.
-
And if you want to debug the network request, you can open |
Beta Was this translation helpful? Give feedback.
Automa sending the right payload (first image), and I think the error is on the range that you inputted (second image) when trying to update the spreadsheet cells.
Because with
fullurl!A:A
range you requested to write the cells on the first column (A) but in the payload, it writes to the second column (B)There're two ways you can fix this, first by changing the range from
fullurl!A:A
tofullurl!A:B
. And second, if you planning to only write on the first column, change the payload into