Sending Email for date exactly 29 and 30 days ago

Hello,

I have an excel file with rows and each one has an orientation date. I have an If statement to send an email to all rows with a date of exactly 29 or 30 days ago. Currently, my condition is sending for those days but also all days prior as well (like 31, 32, 33, etc days ago). Any suggestions?

Hi, you can use like this in if activity

  1. or condition
    (condtion1) or (condition2)
    (29 or 30)
  2. and condition
    (condtion1) and (condition2)
    (29 and 30)
1 Like

This is because as per your boolean condition any date that falls under the 29 days before will return true.

Please update your boolean condition to match the condition.

yourDate <= Now.AddDays(-29) AND yourDate >= Now.AddDays(-30)

This will send email if orientation date is 29 or 30 days ago.

Regards,
Karthik Byggari

1 Like

if you want to sent exactly for 29 or 30 then use β€˜=’ condition with an β€˜or’ in between.