I have a report using CR 2011 and it has a column for each day (Monday - Sunday) and does employee counts by the hours of clock ins and clock outs. I have a reset variable for each day but I need to figure out how to rollover counts from Monday to Tuesday. For example on Monday at 10PM I have 1 employee clock in and then at 11PM I have another clock in with no clock outs then Tuesday will start at midnight with 0 clock ins and once Employee 1 clocks out I now have -1 due to the 2 clock ins from the previous day. I need the 2 from Monday to roll over to the next column. I have the formulas for the days basically:
If (DayofWeek = 1 ) Then
{@InCount} - {@Out Count}
So once the day = 2 it will reset to 0. I tried removing the formula but that doesn't seem to correct this. I thought it would have been pretty easy to do but it is not turning out that way. Anyone have any ideas?
If (DayofWeek = 1 ) Then
{@InCount} - {@Out Count}
So once the day = 2 it will reset to 0. I tried removing the formula but that doesn't seem to correct this. I thought it would have been pretty easy to do but it is not turning out that way. Anyone have any ideas?