- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
How to create million format to measure in SAS VA
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Hello @ChrisWu,
Your question requires more details before experts can help. Can you revise your question to include more information?
Review this checklist:
- Specify a meaningful subject line for your topic. Avoid generic subjects like "need help," "SAS query," or "urgent."
- When appropriate, provide sample data in text or DATA step format. See this article for one method you can use.
- If you're encountering an error in SAS, include the SAS log or a screenshot of the error condition. Use the Photos button to include the image in your message.
- It also helps to include an example (table or picture) of the result that you're trying to achieve.
To edit your original message, select the "blue gear" icon at the top of the message and select Edit Message. From there you can adjust the title and add more details to the body of the message. Or, simply reply to this message with any additional information you can supply.
SAS experts are eager to help -- help them by providing as much detail as you can.
This prewritten response was triggered for you by fellow SAS Support Communities member @PGStats
.- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
What do you want your million format to look like? You need to provide an example otherwise we just end up guessing.
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Variable SUM_AMT=1,234,567,890 and want VA report to display formatted SUM_AMT value as 1,234.46
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
The closest format is BESTw.
Could SAS create something like BESTRw. (aka BEST Roman)
Value > BEST6. > * (BESTR4.)
1,234 > 1.23 E3 > 1.23 K
1,234,567 > 1.23 E6 > 1.23 M
1,234,567,890 > 1.23 E9 > 1.23 B
1,234,567,890,123 > 1.23 E12 > 1.23 T
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
I would just create a new column that divides this one by 1,000,000. Then you can adjust the trailing digits after the decimal with the standard numeric format options.
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Depending on the type of reports you are developing, VA can scale numbers automatically. For example I have a number of VA graphs where I have applied the SAS DOLLAR format to the source data and the graph automatically labels and scales the axes with "$ millions". You might want to check this out.
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content