Hi community,
I need some help in regards to triggering a reminder for an inventory base. I’ve got it working for a 1 month basis but needs to be recurring every month.
For example:
I receive a product that has 9 cartons, on a date 11/20/2021 (Date Received), but i charge a storage fee every month this product doesn’t get shipped out. I set a 1 month deadline date of 12/20/2021 (Storage Deadline). I have a column that has # CTNS (what originally was received) and a column that shows CTNS SHIPPED and CTNS LEFT
My formula is as follows:
IF({Storage Deadline}, IF(
AND({Date Received},{# CTNS} - {CTNS SHIPPED} > 0,{Storage Deadline} <= NOW()
),
"Trigger Reminder"
))
My automation runs only when the deadline reminder column displays “Trigger Reminder.”
Was wondering if there is a way to get it to trigger every month assuming the product has not been fully shipped out.