I am using AI center to label fields in a pdf
However in few checkbox are there
I have marked it as string
In output I want to make it as boolean
Can I do it ?
In UiPath Studio you can make it as boolean based on the output from AI Center. Let’s store the output data in a variable called OuputData.
If the output is coming with any data then we can make boolean as True else not getting any data false. In this case, you can use the below expression,
- Assign -> BoolFlag = If(Not(String.isnullorempty(OutputData.toString) andalso String.isnullorwhitespace(OutputData.toString)), True, False)
If this is not your case, then give me a brief explanation.
Hope it helps!!