A
an
I have the next crosstabquery:
TRANSFORM Sum(T_General.Val) AS SumOfVal
SELECT T_General.Dt AS Date
FROM T_General
WHERE (((T_General.Param) Like "Temp *"))
GROUP BY T_General.Dt
PIVOT T_General.Param;
I would like create criteria in column "Date: Dt" to
choose the Month.
When I write Between [Choose Month] appear the message:
The Microsoft Jet databese engine does not
recognize '[Choose Month]'...
I would like help to this, please.
Thanks in advance.
an
TRANSFORM Sum(T_General.Val) AS SumOfVal
SELECT T_General.Dt AS Date
FROM T_General
WHERE (((T_General.Param) Like "Temp *"))
GROUP BY T_General.Dt
PIVOT T_General.Param;
I would like create criteria in column "Date: Dt" to
choose the Month.
When I write Between [Choose Month] appear the message:
The Microsoft Jet databese engine does not
recognize '[Choose Month]'...
I would like help to this, please.
Thanks in advance.
an