Categories
- All Categories
- 15 Oracle Analytics Sharing Center
- 14 Oracle Analytics Lounge
- 211 Oracle Analytics News
- 41 Oracle Analytics Videos
- 15.7K Oracle Analytics Forums
- 6.1K Oracle Analytics Idea Labs
- Oracle Analytics User Groups
- 77 Oracle Analytics Trainings
- 14 Oracle Analytics Data Visualizations Challenge
- Find Partners
- For Partners
Welcome to the Oracle Analytics Community: Please complete your User Profile and upload your Profile Picture
how to Show number in thousand (k) or in million (M) in xml pulisher

User_F21JQ
Rank 1 - Community Starter
hi
how to Show number in thousand (k) or in million (M) in xml pulisher
<xsl:value-of select='format-number(sum (current-group()/PROPOSED1D), "###,###")' />
Thanks
0
Answers
-
hi
any update ?
0 -
Hello,
There is an own XML (BI) Publisher Community.
regards
0 -
Add the manipulations to your query ...
SELECT SALES, (SALES/1000) SALES_K, (SALES/1000000) SALES_M FROM TABLE ... then do your format masking
0