- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Is there a format that will make sure that all output has the same number of digits to the right of the decimal point regardless of whether the value is less than 1%? t seems to me that there should be something like a PERCENTZ.d format that will output a 0 to the left of the decimal point when appropriate. Is there such a format?
Example: a column of values output using the PERCENT7.3 format:
7.44%
3.36%
.242%
What I want:
7.44%
3.36%
0.24%
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
PERCENT7.2 ought to give you the desired results
Paige Miller
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Percent12.3 works with original data.
If you have any chance of having negative values you want to make it wider as well.
I would recommend using percent12.2 as your format. That's usually wide enough to avoid most issues.
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Thanks. I feel silly because I forgot the difference between PERCENTw.d and PERCENTNw.d. (The difference is in how negative percentages are output. PERCENTw.d outputs them in parentheses requiring accounting for 2 additional characters in the output.)
PERCENTN7.2 will also work -- when I know that all of my percentages will be between 99.99% and -99.99%.
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
For a summary of the PERCENTw.d and PERCENTNw.d formats and a discussion of field widths, see "Those tricky PERCENT formats."