Categories
- All Categories
- Oracle Analytics Learning Hub
- 20 Oracle Analytics Sharing Center
- 17 Oracle Analytics Lounge
- 233 Oracle Analytics News
- 45 Oracle Analytics Videos
- 15.9K Oracle Analytics Forums
- 6.2K Oracle Analytics Idea Labs
- Oracle Analytics User Groups
- 87 Oracle Analytics Trainings
- 15 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 sum a number on the retrieved value on chart xsl
Hossam160
Rank 2 - Community Beginner
Summary
How to sum a number on the retrieved value on chart xsl
Content
How to sum a number on the retrieved value
<RowLabels>
<Label><xsl:value-of select="YRE"/></Label>
</RowLabels>
<Label><xsl:value-of select="YRE"/></Label>
retrieved value 2019
i want it to be
2020
<Label><xsl:value-of select="YRE + 1"/></Label>
0
Answers
-
Thanks,
Dragos
0 -
its worked nowmust leave space between the sign and node variable<Label>year<xsl:value-of select="YRE + 1"/></Label>0
-
any help plz
0 -
Hi,
try the following:
1) <Label><xsl:value-of select="YRE 1"+1/></Label>
2) <Label><xsl:value-of select=sum("YRE 1"+1)/></Label>
Thanks,
Dragos
0