Hey Uipathians,
Following is an if condition that am using as part of a workflow
The condition that is being used is:
(Convert.Tostring(date_created_HS.Substring(0,10)).Equals(Convert.Tostring(date_created_CCHQ.Substring(0,10)))) or (date_created_HS <> “”)
The motto of this workflow is to extract values of date_created_HS and date_created_CCHQ from different systems and match them; it may be blank in the first system, which am checking with (date_created_HS <> “”)
But when am running it, the condition is running true even for the following dates:
It was running perfectly fine till a few days back but am noticing this discrepancy these days.
PS: I have not touched these conditions since many months now - so just wondering how/what is wrong.
Could anyone help me in diagnosing the fault am committing?
Thank you!