Hi everyone!
I’d like to know if there is any way to check if today is Saturday or Sunday in UiPath.
Thanks!
Hi everyone!
I’d like to know if there is any way to check if today is Saturday or Sunday in UiPath.
Thanks!
Simplest line would be -
DateTime.Now.DayOfWeek.ToString
You can have it used anywhere to check what day it is
How to get it as mon, tue, wed etc
Hi @Sweety_Girl
To get in form of mon, tue, wed
use this format for
Now.ToString(“ddd”)
Hope it helps you
Regards
Nived N
Happy Automation
“ddd” returns abbreviated name (Mon)
“dddd” returns full name (Monday)