Reputation: 11
How to generate subscription notification which will trigger every six months from the first published date. For ex: record is created on 1/1/2018. Notification should be sent on 1/6/2018. Again, for the same record notification sent on 1/12/2018.
Upvotes: 1
Views: 1038
Reputation: 1688
I can think of this as of now: Create a calculated values-list field with the following calculation and use it as a criteria, in a subscription notification.
IF(
MOD(DATEDIF(TODAY(), [First Published], DAY),180) = 0,
VALUEOF([This Field],"Yes"), VALUEOF([This Field],"No")
)
Set this notification on Daily frequency. This way, it'll be triggered for all the records satisfying the 180 days criteria on each given day.
Note: Do not use DDE notification for this.
Upvotes: 1
Reputation: 115
You could do this approximately by setting the Frequency to Reminder. In the criteria, you would select First Published Equals 180 days Before Date. Date in this case means the current date - so you would be comparing First Published = 180 Days before now. Hope this helps!
Upvotes: 1