Hi all,
currently I am using a flow decision to see if those two are equal to one another:
Despite both values being the same, for some reason the flow decision always identifies it as False:
Any takes on what could be the error? Cheers
Hi all,
currently I am using a flow decision to see if those two are equal to one another:
Despite both values being the same, for some reason the flow decision always identifies it as False:
Any takes on what could be the error? Cheers
Hi @SRoyi
I think there might be a space
Use Trim
Function of both sides and try validating
Hope it helps!!
Try giving
dept_inRMS_Doc.Tostring.tolower.Trim = dept_in_outExpired.Tostring.tolower.Trim
Hope it works!!
Hi,
Use the Syntax as follows,
dept_inRMS_Doc.ToString.Trim.Equals (dept_in_outExpired).ToString.Trim
I hope it works
Thanks for the help rlgandu! It worked perfectly as I wanted.
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.