I am not having any luck getting the count or total of a column (field). For example, if I have the following:
EMPLOYEE - - - DAYS_WORKED
John - - - - - - - - - - 5
Steve - - - - - - - - - 7
Linda - - - - - - - - - 3
Rob - - - - - - - - - - 4
I need to get a count of how many employees (4) and total days worked (19). I have tried using COUNT(EMPLOYEE) and SUM(DAYS_WORKED) but they do not work.