The tables in this page have buttons that allow the user to add a reminder for the table row. When the reminder triggers, the user will receive a Coda Notification and will be able to see their triggered reminders in the page. The Remind button in each table uses the same formula. To add a reminder button to a new table, copy the formula from one of the others. Here is the formula:
_Reminders
.AddRow(
_Reminders.User,
User(),
_Reminders.Source,
Hyperlink(
Concatenate(
thisTable.Url().ToText(),
"/r",
thisRow.RowId(),
"&modal=true"
),
thisRow.ToText()
),
_Reminders.[_Source Name],
thisRow.Name
)
.Activate()
The cats table can add reminders for each row.
The dogs table also has a button column to add a reminder and it uses the same button formula as the table.