Use an alert when my Airtable is updated

How would I go about adding an alert when a new row is added to my Airtable?

Screen Shot 2020-06-28 at 8.45.28 PM

I am stumbling around here. I am not sure how to get the last row

Thanks

Hi, @timopp! :wave:
Welcome to our Community! :tada:


To check weather a value has changed or not, you would need to keep track of the last value seen. More clearly,

  • Initialize a counter variable.
  • Every time the screen opens, call all rows.
  • Check the image all rows, and compare (==) it with the counter variable.
  • If the length = counter var., then no new rows were added.
  • Else, (If the length != counter var.), new rows were added. Display the popup, and update the counter variable with the new length.

A simple blocks format would look like -

image

Hope I helped you.
Thanks! :smiley_cat:

I am still struggling to get the content of the row into an alert…as shown