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
How do I add a description word to a XML field (in an .rtf)

Summary
How do I add a description word to a XML field (in an .rtf)
Content
The following syntax works:
<?xdofx:if Description___Country_ID123='UNITED STATES' then '' else HarmonizingCode_ID234 end if?>
I would like to know how to add the words 'Harmonizing Code'- right before the XML value shows in HarmonizingCode_ID234
Example:
If United States, then display nothing
If not United States, then display Harmonizing Code-123456789
Answers
-
hi
use this and print the tag value after that
<?if: Description___Country_ID123!='UNITED STATES' ?> Harmonizing Code <?end if?>
0 -
Use: <?concat (‘Harmonizing Code - ‘,HarmonizingCode_ID234?> to see the text concatenated to the code
0