[destination-google-sheets] Airbyte updates is messing up with my reference cells in formulas #35671
-
Hey guys, new to Airbyte, still getting used. I have made a conection between my Source (API built connector) and my Google Sheets. The data comes from airbyte into my spreadsheet and i have a dashboard sheet to work with the data. But every update my formulas references are being modified. What is going on? Example: in my Dashboard sheet i make a reference to cell B2 in the spreadsheet that receives the data from Airbyte. But after uptade i check the formula and now the reference has changed to b746. Cheers! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Try locking your cell references. I suspect Airbyte is using an insert row operation to add rows to your reference sheet, which will adjust formulas to continue pointing to the same cell they were before. For example if you are referring to cell B2 and you insert a row before row 2, then the inserted row will become row 2, and the row that used to be row 2 will now be row 3. |
Beta Was this translation helpful? Give feedback.
Thanks for your reply. Airbyte does insert row in every update. The way i found to fix that in google sheets is using INDIRECT function, so it fixes the cell reference.
Cheers