If date specific activity

Hello.

I have the specific question.

If today = saturday then execute o make specific activity.

How can i make that?.

Thanks.

Hi,

Hope the following helps you.

img20201120-1

Regards,

1 Like

Hello.

It’s works . Thanks .

I have two conditionals .

  1. If today = the last Sunday of the month .
  2. If today = the 5 of the month .

Can you help me ?.

Hi,

Can you try the following condition?

If today = the last Sunday of the month .

Today.DayOfWeek=DayOfWeek.Sunday AndAlso Today.Day> DateTime.DaysInMonth(Today.Year,Today.Month)-7

If today = the 5 of the month .

 Today.Day = 5

Regards,

2 Likes

It’s work

Thank you very much

I have the last condition

If file exist then .

How can I make that ?.

Hi,

Can you try as the following?

img20201121-1

Or we can also use PathExists activity and set its return value as condition of If.

Regards,

1 Like

Excelent.

Thank you very much

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.