LINQ Query Question_01

How i Gert Max Salary Foe Employee Using ILNQ Query

1.using Read range Activity and store data in a datatable Variable DT1.
2. Using Assign Activity and create a new variable max_Salary
max_Salary= DT1.AsEnumerable().Max(Function(row) CDbl(row(“Salary”)))

Its Work
Thanks :+1:

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.