Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
how to display count of employees in each department in the below table format
load * from employee;
load * from department;
whenver I clik on concerned department those details are to be displayed in ohter table
i.e. when i click i slaes all the 10 records are to be displyed as below
in script--
load *
from tablename;
load
department,
count([employee number]) resident tablename group by department;
****************************************
in expression--
Aggr(count([employee number]),department)