Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi experts,
How to find out the department wise maximum salary ? what is the syntax ?
If you want Maximum Salary of an Employee by Department...
use as below
Max(TOTAL <Department> Aggr(SUM(Salary),Department,Name))
or simply
=Max(Aggr(SUM(Salary),Department,Name))
Are you looking for something in the front end or back end of the application??
Sunny