Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
Author |
Topic |
jung1975
Aged Yak Warrior
503 Posts |
Posted - 2005-02-09 : 12:56:20
|
I have a pie chart that has percentage values in Repoting Services.I have used the format code = P to be able to convert number to percentage (e.g. 0.2 -> 20 %).However, the percentage values were shown with decimal points.For example:72.00 %How can I strip off decimal points so that the percentage should look like 72%? |
|
johnb
Starting Member
8 Posts |
Posted - 2005-02-14 : 09:30:33
|
If you use the code 'P0', that should work. The 0 relates to the numer of decimal points shown (i.e. none!)John |
 |
|
|
|
|