I first fetch certain data from a table in glide. → I make an HTTP request and get some text data. Which I am writing to another table in glide (Current scenario)
WHat I need help with
The API response should check wether the data is present in the glide table and only write those which are not present in glide.
PS There is no identifier to data coming in API response its plain text data.
My Glide Table will already have text stored from the previous API response. Every morning I query the API and get response from API. Unfortunately the api Just gives me dump of all texts. Which includes previously gotten one which I would have stored in my glide table under Text Column.
I dont want to write the Texts which are already present.
If I understand the purpose correctly, you can check if the text field in glide is empty for the current record in your loop; if it is empty, then you can paste the value with text by updating it.
However, I see that your last action is not updated, but it is Add row; that’s why I am not sure if I got you correctly.