HiI have a style sheet with following number format <fo:block> <xsl:value-of select="format-number(PDPRCE, '###.###,0000', 'euro')" /> </fo:block>
When PDPRCE is less then 1, it print ,7200 , but i want to print 0,7200 how can i do so, will the format type below will work <fo:block> <xsl:value-of select="format-number(PDPRCE, '###.##0,0000', 'euro')" /> </fo:block>
