How to find 15th highest salary from a datatable using Linq in UiPath(Skip and Take Operator)

Опубликовано: 26 Август 2026
на канале: Learn Tech with Mannoj
150
2

Problem statement : We have a datatable that contains the employee details along with salary and we need to fetch the details of the employee having 15th highest salary

Here is the query to get the record


(From row In dt_InputData.AsEnumerable Order By CInt(row.Item(2)) Descending Select row).
Skip(14).
Take(1).CopyToDataTable

Code: https://github.com/manojbatra071/UiPa...

Medium:   / how-to-find-15th-highest-salary-from-a-dat...  


#rpa #uipath #OneMinuteRPA #uipathrpa #uipathstudio