BigFuzzyDog, try this.
What I did was create 4 new formulae. An Increment formula, an Initialize formula and 2 Total formulas, one for DayShift and for NightShift.
Formula 1: '@Increment'
WhilePrintingRrecords;
NumberVar DayShiftCount;
NumberVar NightShiftCount;
If ({shiftfield}="DayShift"
Then DayShiftCount:=DayShiftCount+1
Else NightShiftCount:=NightShiftCount+1
Formula 2: '@Initialize'
NumberVar DayShiftCount:=0;
NumberVar NightShiftCount:=0;
Formula 3: '@DayShiftTotal'
WhilePrintingRecords;
NumberVar DayShiftCount;
DayShiftCount
Formula 4: '@NightShiftTotal'
WhilePrintingRecords;
NumberVar NightShiftCount;
NightShiftCount
What you do is insert formula '@Increment' into your detail section somewhere and suppress it because it does not have to be seen.
Then insert formula '@Initialize' into your group header and suppress that as well.
Next is your 2 total formulas, '@DayShiftTotal' and '@NightShiftTotal'. You put these in your report header.
Hope this works for you.