I have a book club doc and all the users in the doc can submit a book to the list of all the books to read. When a user submits their first book I would like their name added to a list in a different table. I have a people column that populates who created the row (or entry).
I see the When Row Changed trigger for the automation but I can’t figure out the automation step 2 if formula.
Something along the lines of thisRow.[Step 1 Result].filter([Recommended By],CurrentValue)
But I can tell I am fairly lost and I think it’s because I dont understand how I need to structure it to take a specific value in a cell and confirm that it is the only value in that row.
a Last SubmissionTracker, that will show the very last book submitted, and the people who submitted it as well, using a lookup column to BookSubmitted with the formula BookSubmitted.Last(), and the last submitter is an automatic referenced by. Finally, I check if the last submiter exists in the submiter list :
Check if the unique row of LastSubmissionTracker has changed
if the checkbox “exist” is false, this is the first time that your user submit a doc, then continue to …
Create a new Row in submiter list with the name of this user
In this example, Obiwan Kenobi has already submited. I, as Quentin, submit my first book. If i launch the automation (that will be automatic of course later ) it creates my name in the submiter list. When I submit my second book, it (logically) doesnt.
Please play with the doc and tell me what you think