Condition does not work

Hello. Help me, please.
I need to create a condition that checks if today is November 8th. If today is November 8th, then sequence 1 should be executed, if not, then sequence 2 should be executed. I tried to do it (see the photo), but it doesn’t work. I start the process today on Feb 8th and sequence 1 is running.

That comes out as true because MonthNovember is set as the month of November and based and the date as now.day which is the 8th. If you used Now.Month instead of 11 then it would be false and the go to the false branch

Hi,

Can you try the following condition?

Today.Month=11 AndAlso Today.Day=8

Regards,

It turned out to be very simple! Thank you very much for your help!

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