Below is an example of a report I have created. This is a manual crosstab report where I used formulas to create the columns. I will try to describe my delema as briefly as possible, but please let me know if you need more information in order to understand what I need to do.
Name Sat Sun Mon Tues Wed Thur Fri
5/12 5/13 5/14 5/15 5/16 5/17 5/18 TTL
John Smith 0 0 8 8 8 0 0 24
Jim Jones 0 0 0 8 8 0 0 16
Mike Scott 0 0 8 8 8 0 0 24
Jan Peters 0 0 8 0 8 0 0 16
The report shows timecard entries for a current week. Time should be entered daily. The report is grouped by employee and will be run daily to show any employee who did not enter time for a previous day or days in the week. I want to group the report to show those employees with 'missing' entries first. So, for example, assuming this report was run on Thurs 5/17, Jim Jones and Jan Peters should be listed first because they have 0 hours entered on 5/14 and 5/15 respectively. (note: Sat and Sun are normal days off and will be 0 for most people. At this point I am more concerned with the normal work days, Mon-Fri.)
Below is an example of a formula I've tried, to give you an idea of my thought pattern. The problem,however,is the formula is not on the drop down list when I try to create a group on it. I've tried a similar formula thinking I could suppress records where hours were >0,but had no success.
if Sum ({@SUNHRS}, {table.empl})=0 or
Sum ({@MONHRS}, {table.empl})=0 or
Sum ({@TUESHRS}, {table.empl})=0 or
Sum ({@WEDHRS}, {table.empl})=0 or
Sum ({@THURSHRS}, {table.empl})=0 or
Sum ({@FRIHRS}, {table.empl})=0 or
Sum ({@SATHRS}, {table.empl})=0 then "missing"
Any ideas,comments,suggestions are greatly appreciated!
Name Sat Sun Mon Tues Wed Thur Fri
5/12 5/13 5/14 5/15 5/16 5/17 5/18 TTL
John Smith 0 0 8 8 8 0 0 24
Jim Jones 0 0 0 8 8 0 0 16
Mike Scott 0 0 8 8 8 0 0 24
Jan Peters 0 0 8 0 8 0 0 16
The report shows timecard entries for a current week. Time should be entered daily. The report is grouped by employee and will be run daily to show any employee who did not enter time for a previous day or days in the week. I want to group the report to show those employees with 'missing' entries first. So, for example, assuming this report was run on Thurs 5/17, Jim Jones and Jan Peters should be listed first because they have 0 hours entered on 5/14 and 5/15 respectively. (note: Sat and Sun are normal days off and will be 0 for most people. At this point I am more concerned with the normal work days, Mon-Fri.)
Below is an example of a formula I've tried, to give you an idea of my thought pattern. The problem,however,is the formula is not on the drop down list when I try to create a group on it. I've tried a similar formula thinking I could suppress records where hours were >0,but had no success.
if Sum ({@SUNHRS}, {table.empl})=0 or
Sum ({@MONHRS}, {table.empl})=0 or
Sum ({@TUESHRS}, {table.empl})=0 or
Sum ({@WEDHRS}, {table.empl})=0 or
Sum ({@THURSHRS}, {table.empl})=0 or
Sum ({@FRIHRS}, {table.empl})=0 or
Sum ({@SATHRS}, {table.empl})=0 then "missing"
Any ideas,comments,suggestions are greatly appreciated!