Pls guide how can I view the “Available ->System → Activities ->Statements ->if” in the UiPath Studio?
Go to project setting → Need to disable the “Modern Design experience”
Refer to the screenshot
Regards
Gokul
The If
Statement is under the the Group Workflow
I am able to find “If” under Workflow:
But I want to find if under " [Available>System>Activities>Statements>if]"
but still not work any solution: screenshot is given below
As far as i know If
Statement is under the Group Workflow
May be we can’t find the If condition in the above path you mentioned
Regards
Gokul
I am following a tutorial, in which that option is using.
The Tutorial maybe using an Older Version Of UiPath Activities and hence, we are not able to reproduce it now.
I believe that the If Activity was moved to the Workflow Group after Certain Version Updates.
Dear All:
appreciate the response, I thinks its a older version.
I am receiving compile time error on below line
Add Data Row
(CurrentRow(“EmployeeID”), CurrentRow(“Name”), CurrentRow(“Designation”), CurrentRow(“Salary”))
Error ERROR Validation Error Compiler error(s) encountered processing expression “(CurrentRow(“EmployeeID”), CurrentRow(“Name”), CurrentRow(“Designation”), CurrentRow(“Salary”))”.
‘)’ expected. Main.xaml
Could you provide us a Screenshot of the Activity where you are receiving the error.
I believe we need to use the Array Row Property in the below way :
{CurrentRow("EmployeeID"), CurrentRow("Name"), CurrentRow("Designation"), CurrentRow("Salary")}
Thank you, error resolved.