Hello:
I have a report that is based on the following crosstab query:
[code=sql]SELECT tblProduct.Prod uctName, QryProd_Bud.GWP _BUD, Nz([Week 1],0) AS Week_1, Nz([Week 2],0) AS Week_2, Nz([Week 3],0) AS Week_3, Nz([Week 4],0) AS Week_4, Nz([Week 5],0) AS Week_5, QryProd_Prior.G WP_PRI
FROM ((tblProduct LEFT JOIN ctqQueryP_G ON tblProduct.Prod uctID = ctqQueryP_G.Pro ductIDFK) LEFT JOIN QryProd_Bud ON tblProduct.Prod uctID = QryProd_Bud.Pro ductIDFK) LEFT JOIN QryProd_Prior ON tblProduct.Prod uctID = QryProd_Prior.P roductIDFK;[/code]
My problem is that when the report displays my [GWP_PRI] or [GWP_BUD] they are not displaying in the standard format. For example the number should be 1,255 but is displaying 1255.
I have checked the table where [GWP] resides ([GWP_PRI] & [GWP_BUD] are based on this field) and I have it set to Number, Long Integer, Standard.
I have also checked the properties within the report, [GWP_PRI] & [GWP_BUD],and the properties format is set to "Standard". None of my other reports (they are not crosstab queries) have this issue with this same field [GWP].
Do crosstab queries do something funky to the format properties or am I missing something here? Any ideas would be helpful.
Thanks,
Keith.
I have a report that is based on the following crosstab query:
[code=sql]SELECT tblProduct.Prod uctName, QryProd_Bud.GWP _BUD, Nz([Week 1],0) AS Week_1, Nz([Week 2],0) AS Week_2, Nz([Week 3],0) AS Week_3, Nz([Week 4],0) AS Week_4, Nz([Week 5],0) AS Week_5, QryProd_Prior.G WP_PRI
FROM ((tblProduct LEFT JOIN ctqQueryP_G ON tblProduct.Prod uctID = ctqQueryP_G.Pro ductIDFK) LEFT JOIN QryProd_Bud ON tblProduct.Prod uctID = QryProd_Bud.Pro ductIDFK) LEFT JOIN QryProd_Prior ON tblProduct.Prod uctID = QryProd_Prior.P roductIDFK;[/code]
My problem is that when the report displays my [GWP_PRI] or [GWP_BUD] they are not displaying in the standard format. For example the number should be 1,255 but is displaying 1255.
I have checked the table where [GWP] resides ([GWP_PRI] & [GWP_BUD] are based on this field) and I have it set to Number, Long Integer, Standard.
I have also checked the properties within the report, [GWP_PRI] & [GWP_BUD],and the properties format is set to "Standard". None of my other reports (they are not crosstab queries) have this issue with this same field [GWP].
Do crosstab queries do something funky to the format properties or am I missing something here? Any ideas would be helpful.
Thanks,
Keith.
Comment