hi,
I need to view all dates between two dates parameters in the crosstab query headings
where I use this syntax
and it doesn't seem to work that way
any suggestions would be really appreciate
thank you in advance
projectnow
I need to view all dates between two dates parameters in the crosstab query headings
where I use this syntax
Code:
PARAMETERS d DateTime, b DateTime; TRANSFORM Sum(Vaclist.Period) AS S SELECT Vaclist.EmpID FROM Vaclist WHERE (((Vaclist.VacDate) Between [d] And [b])) GROUP BY Vaclist.EmpID PIVOT Vaclist.VacDate;
any suggestions would be really appreciate
thank you in advance
projectnow
Comment