SpiritedAway
Registered User.
- Local time
 - Yesterday, 18:53
 
- Joined
 - Sep 17, 2009
 
- Messages
 - 97
 
I have a simple query with this SQL
	
	
	
		
Which produces this result:
TotalStatus Percentage
1 0.01%
4 0.04%
5 0.05%
Total 10
I'm trying to get the Percentage to say
10% instead of 0.01%
40% instead of 0.04%
50% instead of 0.05%
Can anyone advise how the best way to achieve this?
I'm using Access 2007
 
		Code:
	
	
	SELECT [Copy Of QueryLevel1Sum].TotalStatus, [Copy Of QueryLevel1Sum]![TotalStatus]/100 & "%" AS Percentage
FROM [Copy Of QueryLevel1Sum]
GROUP BY [Copy Of QueryLevel1Sum].TotalStatus, [Copy Of QueryLevel1Sum]![TotalStatus]/100 & "%";
	Which produces this result:
TotalStatus Percentage
1 0.01%
4 0.04%
5 0.05%
Total 10
I'm trying to get the Percentage to say
10% instead of 0.01%
40% instead of 0.04%
50% instead of 0.05%
Can anyone advise how the best way to achieve this?
I'm using Access 2007