I'm a newbie and am trying create a SPD 2010 designer workflow that will send email notification when conditions were met.
Given:
- Column Name | Type
Reminder Status | Choice (Open,Close)
ExpirationCountdown | Calc value = ([Date of expiration] - Today())
MOD30 | Calc value = (INT(MOD([Exp_countdown],30)
MOD10 | Calc value = (INT(MOD([Exp_countdown],10)
- Conditions:
Condition a: if Reminder Status = 'Open'
Condition b: ExpirationCountdown = 120,90,60,30,20,10
Condition c: if Reminder Status = 'Close' stop workflow and log "Closed"
My research led me to the workflow below.
If Current Item:Reminder Status equal OPEN
and Current Item:ExpirationCountdown is less that or equal to 120
and Current Item:ExpirationCountdown equals Current Item: MOD30
or Current Item:ExpirationCountdown is less that or equal to 30
and Current Item:ExpirationCountdown equals Current Item: MOD30
email Current Item:Person to Notify
then pause until Current Item:Reminder Status equals 'Closed'
Else if Current Item:Reminder Status equals 'Closed'
stop the workflow and log Closed | Document Submission Completed
Any help would be much appreciated.
Thank you so much.