Categories
- All Categories
- 15 Oracle Analytics Sharing Center
- 16 Oracle Analytics Lounge
- 216 Oracle Analytics News
- 43 Oracle Analytics Videos
- 15.7K Oracle Analytics Forums
- 6.1K Oracle Analytics Idea Labs
- Oracle Analytics User Groups
- 79 Oracle Analytics Trainings
- 15 Oracle Analytics Data Visualizations Challenge
- Find Partners
- For Partners
how to Show number in thousand (k) or in million (M) in xml pulisher

Summary
how to Show number in thousand (k) or in million (M) in xml pulisher
Content
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
Answers
-
What is the issue here? Above syntax is fine and it will show data in thousand separator e.g. 1,234,567,676
0 -
<xsl:value-of select="concat(string(format-number(sum (current-group()/PROPOSED1D) div 1000 , '###,###.000')),string('K'))"/>
Could you try the above
0 -
i want to show 5k instead of 5000 in xsl
0