C
Connell Giacomini
My query has three fields; WorkDate, Part#, PartQty.
I want to sum the total qty for each part# within a specified start & end
WorkDate, as specified in the parameter. The summation works, but does not
group by the work date field. So instead of :
1/11/07 #1445 Qty 6
the result comes out as:
1/11/07 #1445 Qty 2
1/11/07 #1445 Qty 3
1/11/07 #1445 Qty 1
I appears that the Group By doesn't work for the date field. Is there a
special technique to handle this?
I want to sum the total qty for each part# within a specified start & end
WorkDate, as specified in the parameter. The summation works, but does not
group by the work date field. So instead of :
1/11/07 #1445 Qty 6
the result comes out as:
1/11/07 #1445 Qty 2
1/11/07 #1445 Qty 3
1/11/07 #1445 Qty 1
I appears that the Group By doesn't work for the date field. Is there a
special technique to handle this?