If it is Monday

Hi guys,

I need a condition for my automation that will provide different data when it is ANY monday of the year.

I have the “IF” activity however I’m not sure what command would be for : IF its monday

Can you please help?

Dear @marcin.chowaniec ,

Please check this workflow.
DayofTheWeek.zip (2.7 KB)

Source : How to check if today is Saturday or Sunday? - #3 by PrankurJoshi

Regards,

Hi @marcin.chowaniec

In the ‘if’ condition, you can use the following condition to verify whether it’s Monday:

DateTime.ParseExact(stringDate.ToString,"dd/MM/yyyy", Globalization.CultureInfo.InvariantCulture).ToString("dddd") = "Monday"

Here ‘stringDate’ is the input date.

Output:

Hope this helps,
Best Regards.

Hi,

How about the following?

NewBlankTask202302124-1 (2).zip (55.9 KB)

Regards,

Perfect thanks

1 Like

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