G
Guest
I Want to display one decimal places for percentages in graph data table of
Access 2000. Presently , if percentage symbol is displayed in the graph
data,then I was able to display only two decimal places even
thought the source query is formatted to display one decimal places.
Example : I want to display 7.8% for the number 0.0776 in the
table say temp1. I am using the following query in my chart as the row source.
SELECT temp1.StkdRange AS StkdRange,
Format((Sum([temp1].[StkdRangePercent])),"0.0%") AS Ocean
FROM temp1 GROUP BY temp1.StkdRange, temp1.Mode, temp1.SortKey
I am getting the result as follows
-11 -10 -9 -8 -7
0.10% 0.20% 7.50% 4.30% 2.50%
Instead of getting the result
-11 -10 -9 -8 -7
0.1% 0.2% 7.5% 4.3% 2.5%
One additional zero is displayed after the numbers.
Any help is appreciated
Access 2000. Presently , if percentage symbol is displayed in the graph
data,then I was able to display only two decimal places even
thought the source query is formatted to display one decimal places.
Example : I want to display 7.8% for the number 0.0776 in the
table say temp1. I am using the following query in my chart as the row source.
SELECT temp1.StkdRange AS StkdRange,
Format((Sum([temp1].[StkdRangePercent])),"0.0%") AS Ocean
FROM temp1 GROUP BY temp1.StkdRange, temp1.Mode, temp1.SortKey
I am getting the result as follows
-11 -10 -9 -8 -7
0.10% 0.20% 7.50% 4.30% 2.50%
Instead of getting the result
-11 -10 -9 -8 -7
0.1% 0.2% 7.5% 4.3% 2.5%
One additional zero is displayed after the numbers.
Any help is appreciated