E
elena
Hi, All
I have report (record source is crosstab query)
Thanks to Karl (detail line totals now in place)
TRANSFORM Nz(COUNT(TempTicks.TicketNo),0) AS CountOfTick
SELECT TempTicks.Shield, Nz(COUNT(TempTicks.TicketNo),0) AS Total
FROM TempTicks
GROUP BY TempTicks.Shield
PIVOT fWeekdayName(DatePart("w",TempTicks.IssueDate)) & " " &
TempTicks.IssueDate;
When i use textbox control in the Page Footer and assign Control source
property to
=Sum([Total]) it lets me save the change, but running report shows #Error
Result now:
Sheld Sunday 09/17/2007 Monday 09/11/2007 ....Total
999 35 45 80
111 60 15 75
?_______________________________________________
Total #Error ? #Error ? #Error ?
How can i assign Control source for the textboxes in the
Page Footer for the Totals? I am using the name of the
controls in detail line...
Please, advice
I have report (record source is crosstab query)
Thanks to Karl (detail line totals now in place)
TRANSFORM Nz(COUNT(TempTicks.TicketNo),0) AS CountOfTick
SELECT TempTicks.Shield, Nz(COUNT(TempTicks.TicketNo),0) AS Total
FROM TempTicks
GROUP BY TempTicks.Shield
PIVOT fWeekdayName(DatePart("w",TempTicks.IssueDate)) & " " &
TempTicks.IssueDate;
When i use textbox control in the Page Footer and assign Control source
property to
=Sum([Total]) it lets me save the change, but running report shows #Error
Result now:
Sheld Sunday 09/17/2007 Monday 09/11/2007 ....Total
999 35 45 80
111 60 15 75
?_______________________________________________
Total #Error ? #Error ? #Error ?
How can i assign Control source for the textboxes in the
Page Footer for the Totals? I am using the name of the
controls in detail line...
Please, advice