Categories
- All Categories
- 15 Oracle Analytics Sharing Center
- 15 Oracle Analytics Lounge
- 208 Oracle Analytics News
- 41 Oracle Analytics Videos
- 15.7K Oracle Analytics Forums
- 6.1K Oracle Analytics Idea Labs
- Oracle Analytics User Groups
- 76 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 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