Could you just use an automation (coupled with a formula field
1: field with Dateformat(Now) - and choose the format that your inventory stock check dates are in
2: trigger based on button which enters the existing data PLUS this field into the seen linked record field.
Could you just use an automation (coupled with a formula field
1: field with Dateformat(Now) - and choose the format that your inventory stock check dates are in
2: trigger based on button which enters the existing data PLUS this field into the seen linked record field.
Hi @Russell_Findlay thank you for looking at my question.
Per your suggestion, I have created a new field that writes the “inventory check dates” in my preferred format. These are now sitting in waiting in a formula field called Inv_Slug
.

I see you also suggest “2: trigger based on button…” - this is precisely what I want to do! Do you have any hints on how I might be able to do that?
(At the moment, I don’t see how to connect a button to an automation. I also don’t know how to connect a button to a script to act on just the one record that the button originated from. Moreover, I understand how I could make ALL items in a certain view as “inventory seen”. What I don’t yet understand is how to selectively do one item by clicking the one button from the button field.)
let record = await input.recordAsync("Pick a record", table)
Here is the documentation.
You are now in safe hands - BUT seeing your button as a check box made me think
if scripting isn’t your thing … here is a hack of a no code alternative… using a check box rather than a button
1: Have a table called Months - this will be your INV seen in related link

2: Your inventory table should have these fields

Done is your check box (spoof of a button)
Last modified is just the last modified time of your done field
Last Checked is your friednly date format of the last modified field to create your Inv seen in records)
An automation that triggers when Last Modified is changed (optional - only when it is checked as a condition)
with two optional actions - one for when there is already data in the INvSeen in Field and one for when it is blank (so that it adds to the linked records rather than overwrites them)


It may take a few seconds to work
Hope that helps
let record = await input.recordAsync("Pick a record", table)
Here is the documentation.
@Russell_Findlay Thank you for the “no code” option. Your screenshots were informative. At the moment, I’m going to try to stick-things-out with a script though… Wish me luck.
@kuovonne Ah hah! I cannot believe I repeatedly overlooked that portion of the documentation.There’s even an example that served as my starting off point. Thank you for your help; your response is what finally made it click for me.
Here’s my existing script that I am running with. Thanks all!
// Script to add "list items" to a list with existing items via a button field button
/* Get the record */
let table = base.getTable("Items");
let view = table.getView("Inventory");
let record = await input.recordAsync("Pick a record", view); // This accepts the button field button, horray!
/* Get the intended month */
const new_month = t];
let month_table = base.getTable("Months");
let month_view = inv_table.getView("All");
new_month.push(await input.recordAsync("Pick the month", month_view)); // I still need to find a way to have this picked by the script
/* Merge with existing months */
const existing_months = record.getCellValue("Inv_Seen In");
const months = new_month.concat(existing_months)
/* Execute */
await table.updateRecordAsync(record,{"Inv_Seen In": months})