D
Dan @BCBS
Could someone please help me add these together into a text box on a report.
After I count the results (a) I need to change the name (b).
(a). This code give me a count per location:
="Total for Location:" & " " & [TR_GBU] & " (" & Count(*) & " " &
IIf(Count(*)=1,"Cases","Cases") & ")"
(b).This code groups the location and changes the name:
IIf([tr_gbu]="SE" Or [tr_gbu]="EC","MIAMI",IIf([tr_gbu]="NC" Or
[tr_gbu]="NE" Or [tr_gbu]="NW" Or [tr_gbu]="WC" Or
[tr_gbu]="SW","JACKSONVILLE",Null))
Any advise would be appreciated.
After I count the results (a) I need to change the name (b).
(a). This code give me a count per location:
="Total for Location:" & " " & [TR_GBU] & " (" & Count(*) & " " &
IIf(Count(*)=1,"Cases","Cases") & ")"
(b).This code groups the location and changes the name:
IIf([tr_gbu]="SE" Or [tr_gbu]="EC","MIAMI",IIf([tr_gbu]="NC" Or
[tr_gbu]="NE" Or [tr_gbu]="NW" Or [tr_gbu]="WC" Or
[tr_gbu]="SW","JACKSONVILLE",Null))
Any advise would be appreciated.