Hello, I am very new to Retool and have been using the guide of youtube videos and chatgtp to play around with. my Inventory's data which is on Google Sheets.
The issue im currently stuck at is trying to change data on a column. The Sheet im trying to edit has formula which is pulling data from another sheet and within those data is where the Primary Key data is.
So Im using changesetArray to update one of of the column. But it keeps inputing the data from the Primay Key column. I tried to get chatgtp to give me a solution and it gave me this:
{{ INVENTORY.changesetArray.map(change => ({
CODE: change.CODE, // Primary key, only for reference
LOCATION: change.LOCATION // New value to be updated
})) }}
ChatGTP's suggest did not work. It does not do anything.
Hope I explained it enough. TIA