I have just started with UiPath and need help for my project.
What needs to be done is for the bot to check the system date. If the date is less than the 8th of the month, bot will do nothing. But if it’s already the 8th onwards, bot will run a task.
Hi,
Take a interger variable and assign the value “System.DateTime.Now.Day” to it, you will have the current day and later, you can use if statement in sequence or flow decision in flowchart to do the dates comparision like “int_variable > 8”.