ppr
(Peter Preuss)
May 6, 2024, 8:18am
10
any checks has to be done at the datatable (after read-in e.g. with a read range) as values visualized in EXCEL are not mandatory within the same format / datatype in the DataTable.
Therefore we would use e.g. the immediate panel
Understanding the 6 Debugging Panels of UiPath in the easiest way possible! - News / Tutorials - UiPath Community Forum
Once the details are cleared you can start to develop the LINQ
This HowTo introduces how to use the Where operator.
Introduction
The Where operator is used for filtering. For the filtering, a condition is provided. All items matching this condition will pass the filter and will be part of the returned result.
The condition has mandatory to return a boolean outcome. In other words: The result of the condition has to be True or False.
Example
IPO
Samples
Comment
Values:
20,3,17,22,10,25,5
A collection of Numbers
Filter Condition:
x > 15
x is th…