TRANSFORM Sum(QRY_LECHE.CANTIDAD) AS SumOfCANTIDAD SELECT QRY_LECHE.FECHA_ORDENO FROM QRY_LECHE
GROUP BY QRY_LECHE.FECHA_ORDENO PIVOT QRY_LECHE.NUMERO_ESTAMPADO;
Where fecha_ordeno is the rowheading, numero_estampado is columheading and cantidad is the value for the column graph. The graph appears in a report and is suppose to match the current date via a child/master field (fecha_ordeno), but they don't. Instead I get graph of day 5 in day 6, 6 in the 7 and so on. Some times (very few) it appears right.
The report look like this :
Fecha : 01/05/2003
-------------------------------------
No. Estamp Cantidad
-------------------------------------
101 10
102 20
Graph :
----------------------------------------
102
---
101 | |
--- | |
| | | |
| | | |
-----------------------------------------
01/06/2003
Note the dates of the graph and the report don't match (but they are linked through the child/master field). How do I make them match.
!HEEEEEEEEEEEEEEEEEEEEEEEEEELP!
I don't know what else to do.