10-01-24 08:58 AM
Hi guys,
I want to use Blue Prism to check what date today to run process.
My idea is if Wednesday - Yes - Get file A to work on. Otherwise, No - Get file B to work on.
I have used the IsDate function but seems like it doesn't work.
Can you please help me with this? Many thanks!
Answered! Go to Answer.
10-01-24 10:35 AM
Try this decision
FormatDate(Today(), "dddd")="Wednesday"
10-01-24 10:34 AM
Hi Mia,
Sometimes, the answer is right on this forum:
Google on 'blue prism dayofweek' to get more links like the one above.
------------------------------
Happy coding!
---------------
Paul
Sweden
(By all means, do not mark this as the 'Best answer'! )
------------------------------
10-01-24 10:35 AM
Try this decision
FormatDate(Today(), "dddd")="Wednesday"
10-01-24 06:58 PM
Thanks guys!