In my process, before taking action i need to check the current time is between 12am to 6am.
can someone help me, how do check the current time is between 12am to 6 am or not? using “decision” acitivity or any other way around.
Welcome to the Community!
You can use a flow decision or an if condition
Now> DateTime.Parse(Now.toString(“MM-dd-yyyy 00:00:00”)) and Now<DateTime.Parse(Now.toString(“MM-dd-yyyy 06:00:00”))
3 Likes
Hi @verma.vishal, welcome to the Community.
You can use the following condition to determine the above specified condition:
Now.TimeOfDay >= New TimeSpan(0, 0, 0) AndAlso Now.TimeOfDay < New TimeSpan(6, 0, 0)
Hope this helps,
Best Regards.
2 Likes
Thanks for your help, its working as expected
Thanks for the solution, both of solution are working fine in my case
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.