R
RJF
I've searched the Web for help on this and can't find anything. Hopefully,
someone out there can help me.
I created a graph with the following SQL Statement:
TRANSFORM Sum(qry_Mo_Config_Rpt_SmFrm_BW_CopPrnt.Volume) AS SumOfVolume
SELECT qry_Mo_Config_Rpt_SmFrm_BW_CopPrnt.Name
FROM qry_Mo_Config_Rpt_SmFrm_BW_CopPrnt
GROUP BY qry_Mo_Config_Rpt_SmFrm_BW_CopPrnt.Name
ORDER BY qry_Mo_Config_Rpt_SmFrm_BW_CopPrnt.Name DESC
PIVOT qry_Mo_Config_Rpt_SmFrm_BW_CopPrnt.read_period;
Row heading is Name
Column heading is read_period
Data is SumOfVolume
The field "read_period" is a text field (i.e. 200801, 200802, 200803...).
The graph looks great, except for the column headings. Instead of getting
the 200801 and so forth, I'm getting 2E+05 in each heading. It appears that
it's reading it as a number. I am sure that the field is text in the table
it comes from.
I've tried formatting the read_period field as text (even though it already
is and that didn't work).
If I change the SQL Statement to:
TRANSFORM Sum(qry_Mo_Config_Rpt_SmFrm_BW_CopPrnt.Volume) AS SumOfVolume
SELECT qry_Mo_Config_Rpt_SmFrm_BW_CopPrnt.Name
FROM qry_Mo_Config_Rpt_SmFrm_BW_CopPrnt
GROUP BY qry_Mo_Config_Rpt_SmFrm_BW_CopPrnt.Name
ORDER BY qry_Mo_Config_Rpt_SmFrm_BW_CopPrnt.Name DESC
PIVOT "Period " & [read_period];
it shows the column headings as Period 200801, etc.
But having the work "Period" in the heading is not acceptable. Even though
it appears correct when I run the statement in an Access query, once it gets
to the graph, it looks like the format was changed to number.
I hope I explained myself clearly enough. Does anyone know how this is
happening and what I can do to fix it.
Thanks so much.
someone out there can help me.
I created a graph with the following SQL Statement:
TRANSFORM Sum(qry_Mo_Config_Rpt_SmFrm_BW_CopPrnt.Volume) AS SumOfVolume
SELECT qry_Mo_Config_Rpt_SmFrm_BW_CopPrnt.Name
FROM qry_Mo_Config_Rpt_SmFrm_BW_CopPrnt
GROUP BY qry_Mo_Config_Rpt_SmFrm_BW_CopPrnt.Name
ORDER BY qry_Mo_Config_Rpt_SmFrm_BW_CopPrnt.Name DESC
PIVOT qry_Mo_Config_Rpt_SmFrm_BW_CopPrnt.read_period;
Row heading is Name
Column heading is read_period
Data is SumOfVolume
The field "read_period" is a text field (i.e. 200801, 200802, 200803...).
The graph looks great, except for the column headings. Instead of getting
the 200801 and so forth, I'm getting 2E+05 in each heading. It appears that
it's reading it as a number. I am sure that the field is text in the table
it comes from.
I've tried formatting the read_period field as text (even though it already
is and that didn't work).
If I change the SQL Statement to:
TRANSFORM Sum(qry_Mo_Config_Rpt_SmFrm_BW_CopPrnt.Volume) AS SumOfVolume
SELECT qry_Mo_Config_Rpt_SmFrm_BW_CopPrnt.Name
FROM qry_Mo_Config_Rpt_SmFrm_BW_CopPrnt
GROUP BY qry_Mo_Config_Rpt_SmFrm_BW_CopPrnt.Name
ORDER BY qry_Mo_Config_Rpt_SmFrm_BW_CopPrnt.Name DESC
PIVOT "Period " & [read_period];
it shows the column headings as Period 200801, etc.
But having the work "Period" in the heading is not acceptable. Even though
it appears correct when I run the statement in an Access query, once it gets
to the graph, it looks like the format was changed to number.
I hope I explained myself clearly enough. Does anyone know how this is
happening and what I can do to fix it.
Thanks so much.